diff options
| author | Craig Topper <craig.topper@gmail.com> | 2013-07-22 20:46:37 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2013-07-22 20:46:37 +0000 |
| commit | 998bcf953404d3891718f08acddebee458739a27 (patch) | |
| tree | 4f79f50822b619b77cd37bc5c44ca21a86b80c9e /llvm/test | |
| parent | a6188f9fcd68fdc5bf4934a94107ae6116db1090 (diff) | |
| download | bcm5719-llvm-998bcf953404d3891718f08acddebee458739a27.tar.gz bcm5719-llvm-998bcf953404d3891718f08acddebee458739a27.zip | |
Recommit r186813: More Intel syntax alias fixes. With the addition of suppressing some of the aliases from being emitted by the asm printer.
llvm-svn: 186869
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/MC/X86/x86-64.s | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/llvm/test/MC/X86/x86-64.s b/llvm/test/MC/X86/x86-64.s index 521a0776d8a..ea3da30fd49 100644 --- a/llvm/test/MC/X86/x86-64.s +++ b/llvm/test/MC/X86/x86-64.s @@ -241,10 +241,10 @@ cmovnzq %rbx, %rax // rdar://8407928 // CHECK: inb $127, %al -// CHECK: inw %dx +// CHECK: inw %dx, %ax // CHECK: outb %al, $127 -// CHECK: outw %dx -// CHECK: inl %dx +// CHECK: outw %ax, %dx +// CHECK: inl %dx, %eax inb $0x7f inw %dx outb $0x7f @@ -253,12 +253,12 @@ inl %dx // PR8114 -// CHECK: outb %dx -// CHECK: outb %dx -// CHECK: outw %dx -// CHECK: outw %dx -// CHECK: outl %dx -// CHECK: outl %dx +// CHECK: outb %al, %dx +// CHECK: outb %al, %dx +// CHECK: outw %ax, %dx +// CHECK: outw %ax, %dx +// CHECK: outl %eax, %dx +// CHECK: outl %eax, %dx out %al, (%dx) outb %al, (%dx) @@ -267,12 +267,12 @@ outw %ax, (%dx) out %eax, (%dx) outl %eax, (%dx) -// CHECK: inb %dx -// CHECK: inb %dx -// CHECK: inw %dx -// CHECK: inw %dx -// CHECK: inl %dx -// CHECK: inl %dx +// CHECK: inb %dx, %al +// CHECK: inb %dx, %al +// CHECK: inw %dx, %ax +// CHECK: inw %dx, %ax +// CHECK: inl %dx, %eax +// CHECK: inl %dx, %eax in (%dx), %al inb (%dx), %al |

