summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2019-10-07 21:29:05 -0700
committerH. Peter Anvin <hpa@zytor.com>2019-10-07 21:29:05 -0700
commitd03a6c8ffedd1496221eca5f02ba0215794cfaf9 (patch)
treecc520c0f89f26b0887db4a4f5f9bdd6098e3b847 /test
parentd983b6223304fb9bca16c20df0d5349605f25541 (diff)
downloadnasm-d03a6c8ffedd1496221eca5f02ba0215794cfaf9.tar.gz
preproc: fix the detection of the >= operator
There are *four* operators starting with ">": > >> >>> and >=. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'test')
-rw-r--r--test/exitrep.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/exitrep.asm b/test/exitrep.asm
index 3be87055..4e1b6e3c 100644
--- a/test/exitrep.asm
+++ b/test/exitrep.asm
@@ -6,7 +6,7 @@
%exitrep
%endif
mov ebx,i
- %ifn i < 3
+ %if i >= 3
%error iteration i should not be seen
%endif
%assign i i+1