diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-30 23:03:37 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-30 23:03:37 +0000 |
commit | b99ecca4954cbc3fbff77ffb252952cc19c4d799 (patch) | |
tree | 477eb7b58abe6134ff6accc805279396a77892e8 /lib/VMCore/BasicBlock.cpp | |
parent | 5288eaeffedc8178bcd69de55f87fd4f27008a8e (diff) | |
download | external_llvm-b99ecca4954cbc3fbff77ffb252952cc19c4d799.tar.gz external_llvm-b99ecca4954cbc3fbff77ffb252952cc19c4d799.tar.bz2 external_llvm-b99ecca4954cbc3fbff77ffb252952cc19c4d799.zip |
Move more code back to 2.5 APIs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77635 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/BasicBlock.cpp')
-rw-r--r-- | lib/VMCore/BasicBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/BasicBlock.cpp b/lib/VMCore/BasicBlock.cpp index d0fa02ce1c..d7ff3bc8cf 100644 --- a/lib/VMCore/BasicBlock.cpp +++ b/lib/VMCore/BasicBlock.cpp @@ -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(UndefValue::get(PN->getType())); getInstList().pop_front(); // Remove the PHI node } |