[llvm-commits] [llvm] r57460 - in /llvm/trunk: lib/CodeGen/SelectionDAG/LegalizeDAG.cpp test/CodeGen/Mips/2008-10-13-LegalizerBug.ll
Evan Cheng
evan.cheng at apple.com
Mon Oct 13 11:46:18 PDT 2008
Author: evancheng
Date: Mon Oct 13 13:46:18 2008
New Revision: 57460
URL: http://llvm.org/viewvc/llvm-project?rev=57460&view=rev
Log:
FIX PR2794. Make sure SIGN_EXTEND_INREG nodes introduced by LegalizeSetCCOperands are leglized. Patch by Richard Pennington.
Added:
llvm/trunk/test/CodeGen/Mips/2008-10-13-LegalizerBug.ll
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp?rev=57460&r1=57459&r2=57460&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp Mon Oct 13 13:46:18 2008
@@ -4671,6 +4671,8 @@
DAG.getValueType(VT));
Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
DAG.getValueType(VT));
+ Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
+ Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
break;
}
}
@@ -5403,7 +5405,8 @@
DestTy.getVectorNumElements() / 2);
SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Lo);
SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Hi);
- return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult, HiResult));
+ return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult,
+ HiResult));
}
// Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
Added: llvm/trunk/test/CodeGen/Mips/2008-10-13-LegalizerBug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/2008-10-13-LegalizerBug.ll?rev=57460&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/2008-10-13-LegalizerBug.ll (added)
+++ llvm/trunk/test/CodeGen/Mips/2008-10-13-LegalizerBug.ll Mon Oct 13 13:46:18 2008
@@ -0,0 +1,29 @@
+; RUN: llvm-as < %s | llc -march=mips
+; PR2794
+
+define i32 @main(i8*) nounwind {
+entry:
+ br label %continue.outer
+
+continue.outer: ; preds = %case4, %entry
+ %p.0.ph.rec = phi i32 [ 0, %entry ], [ %indvar.next, %case4 ] ; <i32> [#uses=2]
+ %p.0.ph = getelementptr i8* %0, i32 %p.0.ph.rec ; <i8*> [#uses=1]
+ %1 = load i8* %p.0.ph ; <i8> [#uses=1]
+ switch i8 %1, label %infloop [
+ i8 0, label %return.split
+ i8 76, label %case4
+ i8 108, label %case4
+ i8 104, label %case4
+ i8 42, label %case4
+ ]
+
+case4: ; preds = %continue.outer, %continue.outer, %continue.outer, %continue.outer
+ %indvar.next = add i32 %p.0.ph.rec, 1 ; <i32> [#uses=1]
+ br label %continue.outer
+
+return.split: ; preds = %continue.outer
+ ret i32 0
+
+infloop: ; preds = %infloop, %continue.outer
+ br label %infloop
+}
More information about the llvm-commits
mailing list