diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-09 01:16:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-09 01:16:24 +0000 |
commit | ee749d7488bd42df0f67e2d80048c63415943785 (patch) | |
tree | 5e37960146a6c3ada032dc0d3f8d1e52ec50aa12 | |
parent | 1482458b238d60a86033186f8ab1d05da9b8478f (diff) |
Handle static alloca arguments to PHI nodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19409 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 4fe5ddf333..090d3ef53e 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/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<const Value*, unsigned>::iterator VMI = - FuncInfo.ValueMap.find(I); + std::map<const Value*, unsigned>::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<AllocaInst>(PHIOp) && + FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(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 |