summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-05 16:45:06 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-05 16:45:06 +0000
commitbdcb9dfc3a20e12a40637431b342b0a0d3d26e1b (patch)
tree7dca42dc1d60387ec3e1099bfa743b29ab6df0ab /test
parent1722eeeaa41145af182bcd3e77bb0f32e27b4daa (diff)
downloadllvm-bdcb9dfc3a20e12a40637431b342b0a0d3d26e1b.tar.gz
llvm-bdcb9dfc3a20e12a40637431b342b0a0d3d26e1b.tar.bz2
llvm-bdcb9dfc3a20e12a40637431b342b0a0d3d26e1b.tar.xz
Give the assembler some input.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32903 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/sse-fcopysign.ll7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/CodeGen/X86/sse-fcopysign.ll b/test/CodeGen/X86/sse-fcopysign.ll
index 3b9b928a38..e87c08bc59 100644
--- a/test/CodeGen/X86/sse-fcopysign.ll
+++ b/test/CodeGen/X86/sse-fcopysign.ll
@@ -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 )