summaryrefslogtreecommitdiff
path: root/test/immwarn.asm
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-10-06 23:47:58 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-10-06 23:49:01 -0700
commit98a22a65c0ad3fe4c615c54c3fcae4c2812a4c0b (patch)
tree03c99fb1fad04758b83a7599cfde785b91d77dda /test/immwarn.asm
parentc1377e9a98dd5ca6f7900c048df5d346d1733d05 (diff)
downloadnasm-98a22a65c0ad3fe4c615c54c3fcae4c2812a4c0b.tar.gz
Avoid double warning for signed dword immediate
Avoid double warning for the case where a signed dword immediate is incorrectly extended to 64 bits. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'test/immwarn.asm')
-rw-r--r--test/immwarn.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/immwarn.asm b/test/immwarn.asm
index 4b67676f..24119a27 100644
--- a/test/immwarn.asm
+++ b/test/immwarn.asm
@@ -74,7 +74,7 @@
%endif
add rcx,0FFFFh
%if WARN
- add rcx,0FFFFFFFFh ; XXX - double
+ add rcx,0FFFFFFFFh
%endif
add rcx,-1