diff options
| author | Tanya Lattner <tonic@nondot.org> | 2008-02-17 20:02:20 +0000 |
|---|---|---|
| committer | Tanya Lattner <tonic@nondot.org> | 2008-02-17 20:02:20 +0000 |
| commit | f697c038834f36190d6d93353ea3b1fababe6faf (patch) | |
| tree | 0d6ee48a1c954dd09ab948fd4da9acee2a1f3239 /llvm/test/CodeGen/ARM/fparith.ll | |
| parent | 1f6520842c2873aff772a39d53582c469b4f399d (diff) | |
| download | bcm5719-llvm-f697c038834f36190d6d93353ea3b1fababe6faf.tar.gz bcm5719-llvm-f697c038834f36190d6d93353ea3b1fababe6faf.zip | |
Remove llvm-upgrade.
llvm-svn: 47238
Diffstat (limited to 'llvm/test/CodeGen/ARM/fparith.ll')
| -rw-r--r-- | llvm/test/CodeGen/ARM/fparith.ll | 55 |
1 files changed, 27 insertions, 28 deletions
diff --git a/llvm/test/CodeGen/ARM/fparith.ll b/llvm/test/CodeGen/ARM/fparith.ll index 6dfe86015c3..11933d5f70c 100644 --- a/llvm/test/CodeGen/ARM/fparith.ll +++ b/llvm/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) |

