diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-10-06 23:47:58 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-10-06 23:49:01 -0700 |
commit | 98a22a65c0ad3fe4c615c54c3fcae4c2812a4c0b (patch) | |
tree | 03c99fb1fad04758b83a7599cfde785b91d77dda /test | |
parent | c1377e9a98dd5ca6f7900c048df5d346d1733d05 (diff) | |
download | nasm-98a22a65c0ad3fe4c615c54c3fcae4c2812a4c0b.tar.gz nasm-98a22a65c0ad3fe4c615c54c3fcae4c2812a4c0b.tar.bz2 nasm-98a22a65c0ad3fe4c615c54c3fcae4c2812a4c0b.zip |
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')
-rw-r--r-- | test/immwarn.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/immwarn.asm b/test/immwarn.asm index 4b67676..24119a2 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 |