summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/ValueMapper.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-15 05:55:15 +0000
committerChris Lattner <sabre@nondot.org>2004-02-15 05:55:15 +0000
commitde512b5b2edebe9c9021a92c7c7a9ae9fbc380d6 (patch)
tree4da44078e014b4c44afa0a73fd0f57c26a748553 /lib/Transforms/Utils/ValueMapper.cpp
parentcfb0fd2ce8a1a7d5ac83d5bf42742219179ffa03 (diff)
downloadllvm-de512b5b2edebe9c9021a92c7c7a9ae9fbc380d6.tar.gz
llvm-de512b5b2edebe9c9021a92c7c7a9ae9fbc380d6.tar.bz2
llvm-de512b5b2edebe9c9021a92c7c7a9ae9fbc380d6.tar.xz
Adjustments to support the new ConstantAggregateZero class
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11474 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/ValueMapper.cpp')
-rw-r--r--lib/Transforms/Utils/ValueMapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/ValueMapper.cpp b/lib/Transforms/Utils/ValueMapper.cpp
index acc433a6ed..2cb6a9d221 100644
--- a/lib/Transforms/Utils/ValueMapper.cpp
+++ b/lib/Transforms/Utils/ValueMapper.cpp
@@ -28,7 +28,7 @@ Value *llvm::MapValue(const Value *V, std::map<const Value*, Value*> &VM) {
if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
if (isa<ConstantIntegral>(C) || isa<ConstantFP>(C) ||
- isa<ConstantPointerNull>(C))
+ isa<ConstantPointerNull>(C) || isa<ConstantAggregateZero>(C))
return VMSlot = C; // Primitive constants map directly
else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C)) {
GlobalValue *MV = cast<GlobalValue>(MapValue((Value*)CPR->getValue(),VM));