diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-02-14 16:23:08 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-02-14 16:23:08 +0000 |
| commit | 86d534598870d16e60436109ffafdbc740e3d0a6 (patch) | |
| tree | 3045afa003f2a96eb8693410ae9f0fdd34adc5c3 /llvm/test/MC | |
| parent | d21ddb90427959d3b4a63049d89cbcda6ef5f6d4 (diff) | |
| download | bcm5719-llvm-86d534598870d16e60436109ffafdbc740e3d0a6.tar.gz bcm5719-llvm-86d534598870d16e60436109ffafdbc740e3d0a6.zip | |
Revert r15266. This fixes llvm.org/pr15266.
llvm-svn: 175173
Diffstat (limited to 'llvm/test/MC')
| -rw-r--r-- | llvm/test/MC/MachO/direction_labels.s | 12 | ||||
| -rw-r--r-- | llvm/test/MC/X86/intel-syntax-binary.s | 14 |
2 files changed, 6 insertions, 20 deletions
diff --git a/llvm/test/MC/MachO/direction_labels.s b/llvm/test/MC/MachO/direction_labels.s index 35f5d44f728..e224ed3a147 100644 --- a/llvm/test/MC/MachO/direction_labels.s +++ b/llvm/test/MC/MachO/direction_labels.s @@ -1,15 +1,15 @@ // RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s direction_labels: -8: nop - jmp 8b - nop +10: nop + jmp 10b + nop jne 0f 0: nop jne 0b - jmp 9f -9: nop - ret + jmp 11f +11: nop + ret // CHECK: ('cputype', 7) // CHECK: ('cpusubtype', 3) diff --git a/llvm/test/MC/X86/intel-syntax-binary.s b/llvm/test/MC/X86/intel-syntax-binary.s deleted file mode 100644 index 1c4a4cc25b0..00000000000 --- a/llvm/test/MC/X86/intel-syntax-binary.s +++ /dev/null @@ -1,14 +0,0 @@ -// RUN: llvm-mc -triple x86_64-unknown-unknown -x86-asm-syntax=intel %s | FileCheck %s -// rdar://12470373 - -// Checks to make sure we parse the binary suffix properly. -// CHECK: movl $1, %eax - mov eax, 01b -// CHECK: movl $2, %eax - mov eax, 10b -// CHECK: movl $3, %eax - mov eax, 11b -// CHECK: movl $3, %eax - mov eax, 11B -// CHECK: movl $2711, %eax - mov eax, 101010010111B |

