diff options
Diffstat (limited to 'test/CodeGen/CellSPU/fcmp.ll')
-rw-r--r-- | test/CodeGen/CellSPU/fcmp.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/CellSPU/fcmp.ll b/test/CodeGen/CellSPU/fcmp.ll index d212bd5..aad7717 100644 --- a/test/CodeGen/CellSPU/fcmp.ll +++ b/test/CodeGen/CellSPU/fcmp.ll @@ -10,13 +10,13 @@ declare double @fabs(double) declare float @fabsf(float) define i1 @fcmp_eq(float %arg1, float %arg2) { - %A = fcmp oeq float %arg1, %arg2 ; <float> [#uses=1] - ret i1 %A + %A = fcmp oeq float %arg1, %arg2 ; <float> [#uses=1] + ret i1 %A } define i1 @fcmp_mag_eq(float %arg1, float %arg2) { - %A = call float @fabsf(float %arg1) ; <float> [#uses=1] - %B = call float @fabsf(float %arg2) ; <float> [#uses=1] - %C = fcmp oeq float %A, %B ; <float> [#uses=1] - ret i1 %C + %A = call float @fabsf(float %arg1) ; <float> [#uses=1] + %B = call float @fabsf(float %arg2) ; <float> [#uses=1] + %C = fcmp oeq float %A, %B ; <float> [#uses=1] + ret i1 %C } |