mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
733cbb3197
Using hidden files are rather antisocial, and rather pointless in this particular context. Change .stdout and .stderr to simply stdout and stderr. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
18 lines
302 B
NASM
18 lines
302 B
NASM
;Testname=unoptimized; Arguments=-fbin -onop.bin; Files=stdout stderr nop.bin
|
|
;Testname=optimized; Arguments=-fbin -onop.bin -Ox; Files=stdout stderr nop.bin
|
|
|
|
bits 64
|
|
|
|
nop
|
|
o64 nop
|
|
pause
|
|
o64 pause
|
|
|
|
xchg ax,ax
|
|
xchg eax,eax
|
|
xchg rax,rax
|
|
|
|
rep xchg ax,ax
|
|
rep xchg eax,eax
|
|
rep xchg rax,rax
|