Give the assembler some input.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 5 Jan 2007 16:45:06 +0000 (16:45 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 5 Jan 2007 16:45:06 +0000 (16:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32903 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/sse-fcopysign.ll

index 3b9b928a38d212ec63bf73ae64813104886dd18a..e87c08bc59ce7a5b2e29ee0e17af8023b7e2e64a 100644 (file)
@@ -1,6 +1,7 @@
-; RUN: llvm-as | llc -march=x86 -mattr=+sse2 &&
-; RUN: llvm-as | llc -march=x86 -mattr=+sse2 | grep pslldq | wc -l | grep 1 &&
-; RUN: llvm-as | llc -march=x86 -mattr=+sse2 | not getp test
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 &&
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | \
+; RUN:    grep pslldq | wc -l | grep 1 &&
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | not getp test
 
 define float %test1(float %a, float %b) {
        %tmp = tail call float %copysignf( float %b, float %a )