aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2012-03-07 20:58:59 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2012-03-07 20:58:59 +0000
commit6507d84d6cf078fdbb398dcc6d3e70e89ed94b96 (patch)
tree327bd607230d66b0ecfa9910d30e6248953e5862
parent8c3d2580cbd52a91e85a27cc96301cbd5c281cee (diff)
Use llvm-mc instead of llc. Patch by Jack Carter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152242 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/MC/Mips/elf_basic.s10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/MC/Mips/elf_basic.s b/test/MC/Mips/elf_basic.s
index 46211823b6..f7ed348b1b 100644
--- a/test/MC/Mips/elf_basic.s
+++ b/test/MC/Mips/elf_basic.s
@@ -1,7 +1,7 @@
-; RUN: llc -filetype=obj -mtriple mips-unknown-linux %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=CHECK-BE %s
-; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=CHECK-LE %s
+// RUN: llvm-mc -filetype=obj -triple mips-unknown-linux %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=CHECK-BE %s
+// RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=CHECK-LE %s
-; Check that we produce the correct endian.
+// Check that we produce the correct endian.
-; CHECK-BE: ('e_indent[EI_DATA]', 0x02)
-; CHECK-LE: ('e_indent[EI_DATA]', 0x01)
+// CHECK-BE: ('e_indent[EI_DATA]', 0x02)
+// CHECK-LE: ('e_indent[EI_DATA]', 0x01)