aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-09-20 01:26:27 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-09-20 01:26:27 +0000
commit4070e60efecb521e1badfbc0fd78840a62ce8450 (patch)
treefcfed863dfc6c0a047944ab5bf7b8c164ffdee5c /test/CodeGen/X86
parent91a23c82338819564ffa3a4af8aa4b462da7b3b0 (diff)
downloadexternal_llvm-4070e60efecb521e1badfbc0fd78840a62ce8450.zip
external_llvm-4070e60efecb521e1badfbc0fd78840a62ce8450.tar.gz
external_llvm-4070e60efecb521e1badfbc0fd78840a62ce8450.tar.bz2
Clean up the test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56380 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86')
-rw-r--r--test/CodeGen/X86/2008-09-17-inline-asm-1.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/2008-09-17-inline-asm-1.ll b/test/CodeGen/X86/2008-09-17-inline-asm-1.ll
index 96052a6..b3c6007 100644
--- a/test/CodeGen/X86/2008-09-17-inline-asm-1.ll
+++ b/test/CodeGen/X86/2008-09-17-inline-asm-1.ll
@@ -1,7 +1,7 @@
-; RUN: llvm-as < %s | llc -o - -march=x86 | not grep "movl %eax, %eax"
-; RUN: llvm-as < %s | llc -o - -march=x86 | not grep "movl %edx, %edx"
-; RUN: llvm-as < %s | llc -o - -march=x86 | not grep "movl (%eax), %eax"
-; RUN: llvm-as < %s | llc -o - -march=x86 | not grep "movl (%edx), %edx"
+; RUN: llvm-as < %s | llc -march=x86 | not grep "movl %eax, %eax"
+; RUN: llvm-as < %s | llc -march=x86 | not grep "movl %edx, %edx"
+; RUN: llvm-as < %s | llc -march=x86 | not grep "movl (%eax), %eax"
+; RUN: llvm-as < %s | llc -march=x86 | not grep "movl (%edx), %edx"
; %0 must not be put in EAX or EDX.
; In the first asm, $0 and $2 must not be put in EAX.