Change Neon VLDn intrinsics to return multiple values instead of really
[oota-llvm.git] / test / CodeGen / ARM / fparith.ll
index 7210eee9ddd87fd32fbcdfb560a0c31ff8181eb2..568a6c41a0dde7d1e28e7094fe8e2b54e3098e31 100644 (file)
@@ -1,41 +1,85 @@
-; RUN: llvm-as < %s | llc -march=arm &&
-; RUN: llvm-as < %s | llc -march=arm | grep fadds &&
-; RUN: llvm-as < %s | llc -march=arm | grep faddd &&
-; RUN: llvm-as < %s | llc -march=arm | grep fmuls &&
-; RUN: llvm-as < %s | llc -march=arm | grep fmuld
+; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 > %t
+; RUN: grep fadds %t
+; RUN: grep faddd %t
+; RUN: grep fmuls %t
+; RUN: grep fmuld %t
+; RUN: grep eor %t
+; RUN: grep fnegd %t
+; RUN: grep fdivs %t
+; RUN: grep fdivd %t
 
-float %f1(float %a, float %b) {
+define float @f1(float %a, float %b) {
 entry:
-       %tmp = add float %a, %b
+       %tmp = fadd float %a, %b                ; <float> [#uses=1]
        ret float %tmp
 }
 
-double %f2(double %a, double %b) {
+define double @f2(double %a, double %b) {
 entry:
-       %tmp = add double %a, %b
+       %tmp = fadd double %a, %b               ; <double> [#uses=1]
        ret double %tmp
 }
 
-float %f3(float %a, float %b) {
+define float @f3(float %a, float %b) {
 entry:
-       %tmp = mul float %a, %b
+       %tmp = fmul float %a, %b                ; <float> [#uses=1]
        ret float %tmp
 }
 
-double %f4(double %a, double %b) {
+define double @f4(double %a, double %b) {
 entry:
-       %tmp = mul double %a, %b
+       %tmp = fmul double %a, %b               ; <double> [#uses=1]
        ret double %tmp
 }
 
-float %f5(float %a, float %b) {
+define float @f5(float %a, float %b) {
 entry:
-       %tmp = sub float %a, %b
+       %tmp = fsub float %a, %b                ; <float> [#uses=1]
        ret float %tmp
 }
 
-double %f6(double %a, double %b) {
+define double @f6(double %a, double %b) {
 entry:
-       %tmp = sub double %a, %b
+       %tmp = fsub double %a, %b               ; <double> [#uses=1]
        ret double %tmp
 }
+
+define float @f7(float %a) {
+entry:
+       %tmp1 = fsub float -0.000000e+00, %a            ; <float> [#uses=1]
+       ret float %tmp1
+}
+
+define double @f8(double %a) {
+entry:
+       %tmp1 = fsub double -0.000000e+00, %a           ; <double> [#uses=1]
+       ret double %tmp1
+}
+
+define float @f9(float %a, float %b) {
+entry:
+       %tmp1 = fdiv float %a, %b               ; <float> [#uses=1]
+       ret float %tmp1
+}
+
+define double @f10(double %a, double %b) {
+entry:
+       %tmp1 = fdiv double %a, %b              ; <double> [#uses=1]
+       ret double %tmp1
+}
+
+define float @f11(float %a) {
+entry:
+       %tmp1 = call float @fabsf( float %a )           ; <float> [#uses=1]
+       ret float %tmp1
+}
+
+declare float @fabsf(float)
+
+define double @f12(double %a) {
+entry:
+       %tmp1 = call double @fabs( double %a )          ; <double> [#uses=1]
+       ret double %tmp1
+}
+
+declare double @fabs(double)