[llvm-branch-commits] [llvm-branch] r235972 - Merging r228765:
Daniel Sanders
daniel.sanders at imgtec.com
Tue Apr 28 02:39:13 PDT 2015
Author: dsanders
Date: Tue Apr 28 04:39:13 2015
New Revision: 235972
URL: http://llvm.org/viewvc/llvm-project?rev=235972&view=rev
Log:
Merging r228765:
------------------------------------------------------------------------
r228765 | petarj | 2015-02-10 23:30:14 +0000 (Tue, 10 Feb 2015) | 12 lines
Fix makeLibCall argument (signed) in SoftenFloatRes_XINT_TO_FP function
The isSigned argument of makeLibCall function was hard-coded to false
(unsigned). This caused zero extension on MIPS64 soft float.
As the result SingleSource/Benchmarks/Stanford/FloatMM test and
SingleSource/UnitTests/2005-07-17-INT-To-FP test failed.
The solution was to use the proper argument.
Patch by Strahinja Petrovic.
Differential Revision: http://reviews.llvm.org/D7292
------------------------------------------------------------------------
Added:
llvm/branches/release_36/test/CodeGen/Mips/mips64sinttofpsf.ll
Modified:
llvm/branches/release_36/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
Modified: llvm/branches/release_36/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_36/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp?rev=235972&r1=235971&r2=235972&view=diff
==============================================================================
--- llvm/branches/release_36/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp (original)
+++ llvm/branches/release_36/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp Tue Apr 28 04:39:13 2015
@@ -658,7 +658,7 @@ SDValue DAGTypeLegalizer::SoftenFloatRes
NVT, N->getOperand(0));
return TLI.makeLibCall(DAG, LC,
TLI.getTypeToTransformTo(*DAG.getContext(), RVT),
- &Op, 1, false, dl).first;
+ &Op, 1, Signed, dl).first;
}
Added: llvm/branches/release_36/test/CodeGen/Mips/mips64sinttofpsf.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_36/test/CodeGen/Mips/mips64sinttofpsf.ll?rev=235972&view=auto
==============================================================================
--- llvm/branches/release_36/test/CodeGen/Mips/mips64sinttofpsf.ll (added)
+++ llvm/branches/release_36/test/CodeGen/Mips/mips64sinttofpsf.ll Tue Apr 28 04:39:13 2015
@@ -0,0 +1,15 @@
+; RUN: llc -march=mips64 -mcpu=mips64r2 -soft-float -O0 < %s | FileCheck %s
+
+
+define double @foo() #0 {
+entry:
+ %x = alloca i32, align 4
+ store volatile i32 -32, i32* %x, align 4
+ %0 = load volatile i32* %x, align 4
+ %conv = sitofp i32 %0 to double
+ ret double %conv
+
+; CHECK-NOT: dsll
+; CHECK-NOT: dsrl
+
+}
More information about the llvm-branch-commits
mailing list