[llvm-commits] CVS: llvm/test/CodeGen/X86/sse-fcopysign.ll
Reid Spencer
reid at x10sys.com
Mon Apr 16 07:23:28 PDT 2007
Changes in directory llvm/test/CodeGen/X86:
sse-fcopysign.ll updated: 1.6 -> 1.7
---
Log message:
For PR1336: http://llvm.org/PR1336 :
Rename test functions to not conflict with an instruction mnemonic.
---
Diffs of the changes: (+2 -3)
sse-fcopysign.ll | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
Index: llvm/test/CodeGen/X86/sse-fcopysign.ll
diff -u llvm/test/CodeGen/X86/sse-fcopysign.ll:1.6 llvm/test/CodeGen/X86/sse-fcopysign.ll:1.7
--- llvm/test/CodeGen/X86/sse-fcopysign.ll:1.6 Sun Apr 15 18:00:46 2007
+++ llvm/test/CodeGen/X86/sse-fcopysign.ll Mon Apr 16 09:23:07 2007
@@ -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 )
More information about the llvm-commits
mailing list