summaryrefslogtreecommitdiff
path: root/test/nop.asm
Commit message (Collapse)AuthorAgeFilesLines
* test: change .stdout/.stderr to stdout/stderrH. Peter Anvin2008-10-061-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>
* Configure tests to be performed automaticallyVictor van den Elzen2008-05-211-0/+3
|
* Un-special-case "xchg rax,rax"; disassemble o64H. Peter Anvin2007-11-121-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.