aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Linker
diff options
context:
space:
mode:
authorVictor Hernandez <vhernandez@apple.com>2010-01-27 22:03:03 +0000
committerVictor Hernandez <vhernandez@apple.com>2010-01-27 22:03:03 +0000
commit7bf5cf401f27ac7cafe3e2c097cf14b7bb30a653 (patch)
tree0d7e08309690841d315c371e9a7986fbf14571e8 /lib/Linker
parente98585eb36eff3b8c7da1cf7b044da6a05973074 (diff)
downloadexternal_llvm-7bf5cf401f27ac7cafe3e2c097cf14b7bb30a653.zip
external_llvm-7bf5cf401f27ac7cafe3e2c097cf14b7bb30a653.tar.gz
external_llvm-7bf5cf401f27ac7cafe3e2c097cf14b7bb30a653.tar.bz2
Need to recurse for all operands of function-local metadata; and handle Instructions (which map to themselves)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r--lib/Linker/LinkModules.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp
index 86f3b84..279c4be 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -395,16 +395,13 @@ static Value *RemapOperand(const Value *In,
} else if (const MDNode *MD = dyn_cast<MDNode>(In)) {
if (MD->isFunctionLocal()) {
SmallVector<Value*, 4> Elts;
- for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i) {
- Value *Op = MD->getOperand(i);
- // LinkFunctionBody() already handled non-argument values.
- Elts.push_back(isa<Argument>(Op) ? RemapOperand(Op, ValueMap) : Op);
- }
+ for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
+ Elts.push_back(RemapOperand(MD->getOperand(i), ValueMap));
Result = MDNode::get(In->getContext(), Elts.data(), MD->getNumOperands());
} else {
Result = const_cast<Value*>(In);
}
- } else if (isa<MDString>(In) || isa<InlineAsm>(In)) {
+ } else if (isa<MDString>(In) || isa<InlineAsm>(In) || isa<Instruction>(In)) {
Result = const_cast<Value*>(In);
}