aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/ValueMapper.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-31 20:13:24 +0000
committerChris Lattner <sabre@nondot.org>2009-10-31 20:13:24 +0000
commitc1dc35094e3ffcb4b3a765f0f786b8a2948bc321 (patch)
treefc2ae649b0f036d8ad53661a318ae6e9bc43d57f /lib/Transforms/Utils/ValueMapper.cpp
parent7d83ebcadd725d050cc58962e9b7c4312d676e7f (diff)
adjust a couple xforms to work with null bb's in BlockAddress.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85680 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/ValueMapper.cpp')
-rw-r--r--lib/Transforms/Utils/ValueMapper.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/ValueMapper.cpp b/lib/Transforms/Utils/ValueMapper.cpp
index 39331d7816..7929eb9ac2 100644
--- a/lib/Transforms/Utils/ValueMapper.cpp
+++ b/lib/Transforms/Utils/ValueMapper.cpp
@@ -113,8 +113,13 @@ Value *llvm::MapValue(const Value *V, ValueMapTy &VM) {
if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) {
Function *F = cast<Function>(MapValue(BA->getFunction(), VM));
- BasicBlock *BB = cast_or_null<BasicBlock>(MapValue(BA->getBasicBlock(),VM));
- return VM[V] = BlockAddress::get(F, BB ? BB : BA->getBasicBlock());
+ BasicBlock *BB = 0;
+ if (BA->getBasicBlock()) {
+ BB = cast_or_null<BasicBlock>(MapValue(BA->getBasicBlock(),VM));
+ BB = BB ? BB : BA->getBasicBlock();
+ }
+
+ return VM[V] = BlockAddress::get(F, BB);
}
llvm_unreachable("Unknown type of constant!");