summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/fparith.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/fparith.ll')
-rw-r--r--test/CodeGen/ARM/fparith.ll55
1 files changed, 27 insertions, 28 deletions
diff --git a/test/CodeGen/ARM/fparith.ll b/test/CodeGen/ARM/fparith.ll
index 6dfe860..11933d5 100644
--- a/test/CodeGen/ARM/fparith.ll
+++ b/test/CodeGen/ARM/fparith.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 > %t
+; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 > %t
; RUN: grep fadds %t
; RUN: grep faddd %t
; RUN: grep fmuls %t
@@ -8,79 +8,78 @@
; 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 = add 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 = add 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 = mul 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 = mul 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 = sub 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 = sub double %a, %b ; <double> [#uses=1]
ret double %tmp
}
-float %f7(float %a) {
+define float @f7(float %a) {
entry:
- %tmp1 = sub float -0.000000e+00, %a
+ %tmp1 = sub float -0.000000e+00, %a ; <float> [#uses=1]
ret float %tmp1
}
-double %f8(double %a) {
+define double @f8(double %a) {
entry:
- %tmp1 = sub double -0.000000e+00, %a
+ %tmp1 = sub double -0.000000e+00, %a ; <double> [#uses=1]
ret double %tmp1
}
-float %f9(float %a, float %b) {
+define float @f9(float %a, float %b) {
entry:
- %tmp1 = div float %a, %b
+ %tmp1 = fdiv float %a, %b ; <float> [#uses=1]
ret float %tmp1
}
-double %f10(double %a, double %b) {
+define double @f10(double %a, double %b) {
entry:
- %tmp1 = div double %a, %b
+ %tmp1 = fdiv double %a, %b ; <double> [#uses=1]
ret double %tmp1
}
-float %f11(float %a) {
+define float @f11(float %a) {
entry:
- %tmp1 = call float %fabsf(float %a)
+ %tmp1 = call float @fabsf( float %a ) ; <float> [#uses=1]
ret float %tmp1
}
-declare float %fabsf(float)
+declare float @fabsf(float)
-double %f12(double %a) {
+define double @f12(double %a) {
entry:
- %tmp1 = call double %fabs(double %a)
+ %tmp1 = call double @fabs( double %a ) ; <double> [#uses=1]
ret double %tmp1
}
-declare double %fabs(double)
+declare double @fabs(double)