diff options
author | Jay Foad <jay.foad@gmail.com> | 2011-06-23 09:09:15 +0000 |
---|---|---|
committer | Jay Foad <jay.foad@gmail.com> | 2011-06-23 09:09:15 +0000 |
commit | 61ea0e469254e0c7ab0e190b463d994b9316846c (patch) | |
tree | 4a3a7f1235a5366dc6d5c41a4edf7b8b86b15b87 /llvm/lib/Transforms/Utils/ValueMapper.cpp | |
parent | 25fbb92320fac0a9982d03cc1b00973440d4d475 (diff) | |
download | bcm5719-llvm-61ea0e469254e0c7ab0e190b463d994b9316846c.tar.gz bcm5719-llvm-61ea0e469254e0c7ab0e190b463d994b9316846c.zip |
Reinstate r133513 (reverted in r133700) with an additional fix for a
-Wshorten-64-to-32 warning in Instructions.h.
llvm-svn: 133708
Diffstat (limited to 'llvm/lib/Transforms/Utils/ValueMapper.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/ValueMapper.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Utils/ValueMapper.cpp b/llvm/lib/Transforms/Utils/ValueMapper.cpp index a73bf044981..de6cbdc92d5 100644 --- a/llvm/lib/Transforms/Utils/ValueMapper.cpp +++ b/llvm/lib/Transforms/Utils/ValueMapper.cpp @@ -16,6 +16,7 @@ #include "llvm/Type.h" #include "llvm/Constants.h" #include "llvm/Function.h" +#include "llvm/Instructions.h" #include "llvm/Metadata.h" #include "llvm/ADT/SmallVector.h" using namespace llvm; @@ -128,6 +129,19 @@ void llvm::RemapInstruction(Instruction *I, ValueToValueMapTy &VMap, "Referenced value not in value map!"); } + // Remap phi nodes' incoming blocks. + if (PHINode *PN = dyn_cast<PHINode>(I)) { + for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { + Value *V = MapValue(PN->getIncomingBlock(i), VMap, Flags); + // If we aren't ignoring missing entries, assert that something happened. + if (V != 0) + PN->setIncomingBlock(i, cast<BasicBlock>(V)); + else + assert((Flags & RF_IgnoreMissingEntries) && + "Referenced block not in value map!"); + } + } + // Remap attached metadata. SmallVector<std::pair<unsigned, MDNode *>, 4> MDs; I->getAllMetadata(MDs); |