From a2c5d9168cb022ff5f20cc80f173812892a75c57 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 9 Jan 2005 01:16:24 +0000 Subject: Handle static alloca arguments to PHI nodes. llvm-svn: 19409 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp') diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 4fe5ddf3335..090d3ef53e3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -836,8 +836,7 @@ void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB, // blocks are available as virtual registers. for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I) if (!I->use_empty()) { - std::map::iterator VMI = - FuncInfo.ValueMap.find(I); + std::map::iterator VMI =FuncInfo.ValueMap.find(I); if (VMI != FuncInfo.ValueMap.end()) CopyValueToVirtualRegister(SDL, I, VMI->second); } @@ -878,7 +877,13 @@ void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB, Reg = RegOut; } else { Reg = FuncInfo.ValueMap[PHIOp]; - assert(Reg && "Didn't codegen value into a register!??"); + if (Reg == 0) { + assert(isa(PHIOp) && + FuncInfo.StaticAllocaMap.count(cast(PHIOp)) && + "Didn't codegen value into a register!??"); + Reg = FuncInfo.CreateRegForValue(PHIOp); + CopyValueToVirtualRegister(SDL, PHIOp, Reg); + } } // Remember that this register needs to added to the machine PHI node as -- cgit v1.2.3