about summary refs log tree commit diff stats
path: root/311decimal-int.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-03-07 19:46:21 -0800
committerKartik Agaram <vc@akkartik.com>2021-03-07 19:46:21 -0800
commit1a1a1671edd8d27cdd6229c08e6b40a202d85740 (patch)
tree1bf770bbea05d49908516d89bf59da476f7573bf /311decimal-int.subx
parente5b8721ca4a4c7608a275eec6c7f43f98e2a67e5 (diff)
downloadmu-1a1a1671edd8d27cdd6229c08e6b40a202d85740.tar.gz
7866
Diffstat (limited to '311decimal-int.subx')
-rw-r--r--311decimal-int.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/311decimal-int.subx b/311decimal-int.subx
index d0d8dde7..f7c108dd 100644
--- a/311decimal-int.subx
+++ b/311decimal-int.subx
@@ -124,10 +124,10 @@ $parse-decimal-int-helper:loop:
       # if (curr >= in->end) break
       39/compare %esi 7/r32/edi
       73/jump-if-addr>= break/disp8
-      # if !is-decimal-digit?(*curr) return 0
+      # if !decimal-digit?(*curr) return 0
       8a/copy-byte *esi 1/r32/CL
       50/push-eax
-      (is-decimal-digit? %ecx)  # => eax
+      (decimal-digit? %ecx)  # => eax
       {
         3d/compare-eax-and 0/imm32/false
         75/jump-if-!= break/disp8