[llvm-commits] [PATCH] PR14751: PPC64 - Unsupported type in SelectionDAG::getConstantFP()
Kai
kai at redstar.de
Sun Dec 30 09:43:37 PST 2012
The patch I sent contains a trailing whitespace. Here is the new patch.
Sorry for the noise.
Kai
On 30.12.2012 17:14, Kai wrote:
> Hi!
>
> The attached patch fixes bug report 14751. Includes a test case.
>
> Regards
> Kai
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index a38b3a5..ea80acd 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -1075,7 +1075,8 @@ SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) {
return getConstantFP(APFloat((float)Val), VT, isTarget);
else if (EltVT==MVT::f64)
return getConstantFP(APFloat(Val), VT, isTarget);
- else if (EltVT==MVT::f80 || EltVT==MVT::f128 || EltVT==MVT::f16) {
+ else if (EltVT==MVT::f80 || EltVT==MVT::f128 || EltVT==MVT::ppcf128 ||
+ EltVT==MVT::f16) {
bool ignored;
APFloat apf = APFloat(Val);
apf.convert(*EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven,
diff --git a/test/CodeGen/PowerPC/2012-12-30-SelDag-ppcf128.ll b/test/CodeGen/PowerPC/2012-12-30-SelDag-ppcf128.ll
new file mode 100644
index 0000000..535ece6
--- /dev/null
+++ b/test/CodeGen/PowerPC/2012-12-30-SelDag-ppcf128.ll
@@ -0,0 +1,15 @@
+; RUN: llc -mtriple=powerpc64-unknown-linux-gnu < %s | FileCheck %s
+;
+; PR14751: Unsupported type in SelectionDAG::getConstantFP()
+
+define fastcc void @_D3std4math4sqrtFNaNbNfcZc() {
+entry:
+ br i1 undef, label %if, label %else
+; CHECK: cmplwi 0, 3, 0
+if: ; preds = %entry
+ store { ppc_fp128, ppc_fp128 } zeroinitializer, { ppc_fp128, ppc_fp128 }* undef
+ ret void
+
+else: ; preds = %entry
+ unreachable
+}
More information about the llvm-commits
mailing list