aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/AsmParser
diff options
context:
space:
mode:
Diffstat (limited to 'test/MC/AsmParser')
-rw-r--r--test/MC/AsmParser/hello.s2
-rw-r--r--test/MC/AsmParser/labels.s4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/MC/AsmParser/hello.s b/test/MC/AsmParser/hello.s
index 34b547e..ace8617 100644
--- a/test/MC/AsmParser/hello.s
+++ b/test/MC/AsmParser/hello.s
@@ -1,4 +1,4 @@
-// RUN: llvm-mc %s -o -
+// RUN: llvm-mc -triple i386-unknown-unknown %s -o -
.text
.align 4,0x90
diff --git a/test/MC/AsmParser/labels.s b/test/MC/AsmParser/labels.s
index 1cdff89..e113c86 100644
--- a/test/MC/AsmParser/labels.s
+++ b/test/MC/AsmParser/labels.s
@@ -1,6 +1,6 @@
// RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
- .data:
+ .data
// CHECK: a:
a:
.long 0
@@ -11,7 +11,7 @@ a:
"a$b":
.long 0
- .text:
+ .text
foo:
// CHECK: val:"a$b"
addl $24, "a$b"(%eax)