diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-07-24 19:43:25 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-07-24 19:43:25 +0000 |
commit | 14b69d59dd5f2dec92ed68738fe1fe8a4c6fc312 (patch) | |
tree | 139488aa13e5f6a6ecdccf2fd179645645c20ee3 /llvm/lib/Transforms/Utils/ValueMapper.cpp | |
parent | 6ca585fc412419d7a5d827517c6a362102da88ee (diff) | |
download | bcm5719-llvm-14b69d59dd5f2dec92ed68738fe1fe8a4c6fc312.tar.gz bcm5719-llvm-14b69d59dd5f2dec92ed68738fe1fe8a4c6fc312.zip |
Whether function-local or not, a MDNode may reference a Function in which case
it needs to be mapped to refer to the function in the new module, not the old
one. Fixes PR7700.
llvm-svn: 109353
Diffstat (limited to 'llvm/lib/Transforms/Utils/ValueMapper.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/ValueMapper.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Utils/ValueMapper.cpp b/llvm/lib/Transforms/Utils/ValueMapper.cpp index 3f6a90c94eb..7b60d9697c6 100644 --- a/llvm/lib/Transforms/Utils/ValueMapper.cpp +++ b/llvm/lib/Transforms/Utils/ValueMapper.cpp @@ -27,10 +27,9 @@ Value *llvm::MapValue(const Value *V, ValueToValueMapTy &VM) { // NOTE: VMSlot can be invalidated by any reference to VM, which can grow the // DenseMap. This includes any recursive calls to MapValue. - // Global values and non-function-local metadata do not need to be seeded into - // the VM if they are using the identity mapping. - if (isa<GlobalValue>(V) || isa<InlineAsm>(V) || isa<MDString>(V) || - (isa<MDNode>(V) && !cast<MDNode>(V)->isFunctionLocal())) + // Global values do not need to be seeded into the VM if they are using + // the identity mapping. + if (isa<GlobalValue>(V) || isa<InlineAsm>(V) || isa<MDString>(V)) return VMSlot = const_cast<Value*>(V); if (const MDNode *MD = dyn_cast<MDNode>(V)) { |