diff options
Diffstat (limited to 'lib/VMCore/BasicBlock.cpp')
-rw-r--r-- | lib/VMCore/BasicBlock.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/VMCore/BasicBlock.cpp b/lib/VMCore/BasicBlock.cpp index 4a4bf28c52..df27811ee6 100644 --- a/lib/VMCore/BasicBlock.cpp +++ b/lib/VMCore/BasicBlock.cpp @@ -30,8 +30,8 @@ ValueSymbolTable *BasicBlock::getValueSymbolTable() { return 0; } -LLVMContext *BasicBlock::getContext() const { - return Parent ? Parent->getContext() : 0; +LLVMContext &BasicBlock::getContext() const { + return getType()->getContext(); } // Explicit instantiation of SymbolTableListTraits since some of the methods @@ -203,7 +203,7 @@ void BasicBlock::removePredecessor(BasicBlock *Pred, PN->replaceAllUsesWith(PN->getOperand(0)); else // We are left with an infinite loop with no entries: kill the PHI. - PN->replaceAllUsesWith(getContext()->getUndef(PN->getType())); + PN->replaceAllUsesWith(getContext().getUndef(PN->getType())); getInstList().pop_front(); // Remove the PHI node } |