summaryrefslogtreecommitdiff
path: root/test/nop.asm
AgeCommit message (Collapse)AuthorFilesLines
2008-10-06test: change .stdout/.stderr to stdout/stderrH. Peter Anvin1-2/+2
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>
2008-05-21Configure tests to be performed automaticallyVictor van den Elzen1-0/+3
2007-11-12Un-special-case "xchg rax,rax"; disassemble o64H. Peter Anvin1-0/+14
Un-special-case "xchg rax,rax"; allow it to be encoded as 48 90 for orthogonality's sake. It's a no-op, to be sure, but so are many other instructions. "xchg eax,eax" is still special-cased in 64-bit mode since it is not a no-op; unadorned opcode 90 is now simply "nop" and nothing else. Make the disassembler detect unused REX.W and display them as an "o64" prefix.