mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
aaefc7fe6b
The calculation of vmin in overflow_general() was bogus, causing silliness like ~80h being warned about in a byte context. Reported-by: C. Masloch <pushbx@38.de> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
7 lines
122 B
NASM
7 lines
122 B
NASM
;; Bug report 3392442: invalid warning
|
|
|
|
and byte [0], ~80h
|
|
and byte [0], 0xfff
|
|
and byte [0], -256
|
|
and byte [0], -257
|