Add support for the __sync_sub_and_fetch atomics and friends for X86. The code
[oota-llvm.git] / test / CodeGen / X86 / sse-fcopysign.ll
index e87c08bc59ce7a5b2e29ee0e17af8023b7e2e64a..cff1f7fa86f63c79d1b4f5a20853701934f8b885 100644 (file)
@@ -1,19 +1,16 @@
-; 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
+; RUN: llvm-as < %s | llc -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) {
+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 )
+       %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)