diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-04-15 01:31:00 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-04-15 01:31:00 +0000 |
commit | 9eec66e604f09ed9779bc438d0dc4fa9d24db44c (patch) | |
tree | 768abd3eb02d2aca2c8b10544802c53a0728929d /test/CodeGen/ARM/fcopysign.ll | |
parent | 188ce9c78bdd817f5aa84eff6f1929387ca329e6 (diff) |
Fix another fcopysign lowering bug. If src is f64 and destination is f32, don't
forget to right shift the source by 32 first. rdar://9287902
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129556 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/fcopysign.ll')
-rw-r--r-- | test/CodeGen/ARM/fcopysign.ll | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/test/CodeGen/ARM/fcopysign.ll b/test/CodeGen/ARM/fcopysign.ll index 9e94e3976c..adf989ad91 100644 --- a/test/CodeGen/ARM/fcopysign.ll +++ b/test/CodeGen/ARM/fcopysign.ll @@ -44,15 +44,32 @@ entry: define i32 @test4() ssp { entry: ; SOFT: test4: -; SOFT: vcvt.f32.f64 s0, -; SOFT: vmov.i32 [[REG4:(d[0-9]+)]], #0x80000000 -; SOFT: vbic [[REG5:(d[0-9]+)]], d0, [[REG4]] -; SOFT: vorr d0, [[REG4]], [[REG5]] +; SOFT: vmov.f64 [[REG4:(d[0-9]+)]], #1.000000e+00 +; SOFT: vcvt.f32.f64 s0, [[REG4]] +; SOFT: vshr.u64 [[REG4]], [[REG4]], #32 +; SOFT: vmov.i32 [[REG5:(d[0-9]+)]], #0x80000000 +; SOFT: vbsl [[REG5]], [[REG4]], d0 %call80 = tail call double @copysign(double 1.000000e+00, double undef) %conv81 = fptrunc double %call80 to float %tmp88 = bitcast float %conv81 to i32 ret i32 %tmp88 } +; rdar://9287902 +define float @test5() nounwind { +entry: +; SOFT: test5: +; SOFT: vmov.i32 [[REG6:(d[0-9]+)]], #0x80000000 +; SOFT: vmov [[REG7:(d[0-9]+)]], r0, r1 +; SOFT: vshr.u64 [[REG7]], [[REG7]], #32 +; SOFT: vbsl [[REG6]], [[REG7]], + %0 = tail call double (...)* @bar() nounwind + %1 = fptrunc double %0 to float + %2 = tail call float @copysignf(float 5.000000e-01, float %1) nounwind readnone + %3 = fadd float %1, %2 + ret float %3 +} + +declare double @bar(...) declare double @copysign(double, double) nounwind declare float @copysignf(float, float) nounwind |