about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-02-21 19:38:11 -0800
committerKartik Agaram <vc@akkartik.com>2020-02-21 19:38:11 -0800
commitf19abd4dd12166c37b5a530f4e90f0e5bc7a7394 (patch)
treee240be1b3ae95123ebdfbcc195f12cf965e77df7
parentde4664ffb92036db965605a1474f40960b0c813d (diff)
downloadmu-f19abd4dd12166c37b5a530f4e90f0e5bc7a7394.tar.gz
6047
-rwxr-xr-xapps/mubin154490 -> 154488 bytes
-rw-r--r--apps/mu.subx4
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/mu b/apps/mu
index e1b8822c..dd4ee92d 100755
--- a/apps/mu
+++ b/apps/mu
Binary files differdiff --git a/apps/mu.subx b/apps/mu.subx
index 3f31fae3..5e2bab10 100644
--- a/apps/mu.subx
+++ b/apps/mu.subx
@@ -4158,7 +4158,7 @@ lookup-var-or-literal:  # name: (addr slice), vars: (addr stack (handle var)) ->
     # if is-decimal-digit?(c) return new var(name)
     {
       (is-decimal-digit? %ecx)  # => eax
-      81 7/subop/compare %eax 0/imm32/false
+      3d/compare-eax-and 0/imm32/false
       74/jump-if-= break/disp8
       (new-literal-integer Heap %esi)  # => eax
       eb/jump $lookup-var-or-literal:end/disp8
@@ -5655,7 +5655,7 @@ emit-subx-block:  # out: (addr buffered-file), block: (handle block), vars: (add
     #
     {
 $emit-subx-block:check-empty:
-      81 7/subop/compare %eax 0/imm32
+      3d/compare-eax-and 0/imm32
       0f 84/jump-if-= break/disp32
       (emit-indent *(ebp+8) *Curr-block-depth)
       (write-buffered *(ebp+8) "{\n")