diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 14:23:07 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 14:23:07 +0000 |
commit | 15326fa114dc64895b8b35d24b5ba5dc63e48193 (patch) | |
tree | 7d3e0fae25c3df3f33d65593b55f5893a768f1e4 /llvm/test/CodeGen/X86/sse-fcopysign.ll | |
parent | b10032554777296c52a29eb6c81247459cf69421 (diff) | |
download | bcm5719-llvm-15326fa114dc64895b8b35d24b5ba5dc63e48193.tar.gz bcm5719-llvm-15326fa114dc64895b8b35d24b5ba5dc63e48193.zip |
For PR1336:
Rename test functions to not conflict with an instruction mnemonic.
llvm-svn: 36130
Diffstat (limited to 'llvm/test/CodeGen/X86/sse-fcopysign.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/sse-fcopysign.ll | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/sse-fcopysign.ll b/llvm/test/CodeGen/X86/sse-fcopysign.ll index b82f18d32b3..cff1f7fa86f 100644 --- a/llvm/test/CodeGen/X86/sse-fcopysign.ll +++ b/llvm/test/CodeGen/X86/sse-fcopysign.ll @@ -1,12 +1,11 @@ ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | not grep test -; XFAIL: * -define float @test1(float %a, float %b) { +define float @tst1(float %a, float %b) { %tmp = tail call float @copysignf( float %b, float %a ) ret float %tmp } -define double @test2(double %a, float %b, float %c) { +define double @tst2(double %a, float %b, float %c) { %tmp1 = add float %b, %c %tmp2 = fpext float %tmp1 to double %tmp = tail call double @copysign( double %a, double %tmp2 ) |