Temporarily disable on-demand fast-isel.
[oota-llvm.git] / test / CodeGen / X86 / sse-fcopysign.ll
index 3b9b928a38d212ec63bf73ae64813104886dd18a..0e0e4a9a86cfceb70363fea08ace1f63ea815bf5 100644 (file)
@@ -1,18 +1,16 @@
-; 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: llc < %s -march=x86 -mattr=+sse2 | not grep test
 
-define float %test1(float %a, float %b) {
-       %tmp = tail call float %copysignf( float %b, float %a )
+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) {
-       %tmp1 = add float %b, %c
+define double @tst2(double %a, float %b, float %c) {
+       %tmp1 = fadd float %b, %c
        %tmp2 = fpext float %tmp1 to double
-       %tmp = tail call double %copysign( double %a, double %tmp2 )
+       %tmp = tail call double @copysign( double %a, double %tmp2 )
        ret double %tmp
 }
 
-declare float %copysignf(float, float)
-declare double %copysign(double, double)
+declare float @copysignf(float, float)
+declare double @copysign(double, double)