mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
0a9250c2ab
The fix for BR 3392278:
aa29b1d93f
assemble.c: Don't drop rex prefix from instruction itself
... would cause multiple REX prefixes to be emitted for some
instructions. Create a new flag to indicate that REX has already been
emitted, which can be cleared for each instance of an instruction.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
9 lines
118 B
NASM
9 lines
118 B
NASM
bits 64
|
|
|
|
; Broken per BR 3392278
|
|
times 4 paddd xmm8, xmm11
|
|
|
|
; Broken per BR 3392279
|
|
bswap r12d
|
|
times 4 bswap r12d
|