about summary refs log tree commit diff stats
path: root/083subx-widths.subx
diff options
context:
space:
mode:
Diffstat (limited to '083subx-widths.subx')
-rw-r--r--083subx-widths.subx8
1 files changed, 4 insertions, 4 deletions
diff --git a/083subx-widths.subx b/083subx-widths.subx
index ffefe194..d384ea91 100644
--- a/083subx-widths.subx
+++ b/083subx-widths.subx
@@ -62,7 +62,7 @@ compute-width-of-slice: # s : (addr slice) -> eax : int
     # . if (eax != false) return 4
     3d/compare-eax-and  0/imm32/false
     b8/copy-to-eax  4/imm32         # ZF is set, so we can overwrite eax now
-    75/jump-if-not-equal  $compute-width-of-slice:end/disp8
+    75/jump-if-!=  $compute-width-of-slice:end/disp8
     # if (has-metadata?(word, "disp32")) return 4
     # . eax = has-metadata?(word, "disp32")
     # . . push args
@@ -75,7 +75,7 @@ compute-width-of-slice: # s : (addr slice) -> eax : int
     # . if (eax != false) return 4
     3d/compare-eax-and  0/imm32/false
     b8/copy-to-eax  4/imm32         # ZF is set, so we can overwrite eax now
-    75/jump-if-not-equal  $compute-width-of-slice:end/disp8
+    75/jump-if-!=  $compute-width-of-slice:end/disp8
     # if (has-metadata?(word, "imm16")) return 2
     # . eax = has-metadata?(word, "imm16")
     # . . push args
@@ -88,7 +88,7 @@ compute-width-of-slice: # s : (addr slice) -> eax : int
     # . if (eax != false) return 2
     3d/compare-eax-and  0/imm32/false
     b8/copy-to-eax  2/imm32         # ZF is set, so we can overwrite eax now
-    75/jump-if-not-equal  $compute-width-of-slice:end/disp8
+    75/jump-if-!=  $compute-width-of-slice:end/disp8
     # if (has-metadata?(word, "disp16")) return 2
     # . eax = has-metadata?(word, "disp16")
     # . . push args
@@ -101,7 +101,7 @@ compute-width-of-slice: # s : (addr slice) -> eax : int
     # . if (eax != false) return 2
     3d/compare-eax-and  0/imm32/false
     b8/copy-to-eax  2/imm32         # ZF is set, so we can overwrite eax now
-    75/jump-if-not-equal  $compute-width-of-slice:end/disp8
+    75/jump-if-!=  $compute-width-of-slice:end/disp8
     # otherwise return 1
     b8/copy-to-eax  1/imm32
 $compute-width-of-slice:end: