diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-27 01:22:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-27 01:22:24 +0000 |
commit | 3df13f4f22826aa782462148ed1f2cc8ca63f112 (patch) | |
tree | 4141da8704ae931e368c431e671fb2bd0d070794 /llvm/lib/Transforms/Utils/ValueMapper.cpp | |
parent | 53e97ebd2c846df5cbc2ad5864ee5c0e5fbac18e (diff) | |
download | bcm5719-llvm-3df13f4f22826aa782462148ed1f2cc8ca63f112.tar.gz bcm5719-llvm-3df13f4f22826aa782462148ed1f2cc8ca63f112.zip |
Implement a new method, CloneAndPruneFunctionInto, as documented.
llvm-svn: 28519
Diffstat (limited to 'llvm/lib/Transforms/Utils/ValueMapper.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/ValueMapper.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Utils/ValueMapper.cpp b/llvm/lib/Transforms/Utils/ValueMapper.cpp index b309f9c0e2a..d4be6e47ef0 100644 --- a/llvm/lib/Transforms/Utils/ValueMapper.cpp +++ b/llvm/lib/Transforms/Utils/ValueMapper.cpp @@ -30,7 +30,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<ConstantAggregateZero>(C) || - isa<UndefValue>(C) || isa<InlineAsm>(V)) + isa<UndefValue>(C)) return VMSlot = C; // Primitive constants map directly else if (ConstantArray *CA = dyn_cast<ConstantArray>(C)) { for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) { @@ -130,8 +130,6 @@ Value *llvm::MapValue(const Value *V, std::map<const Value*, Value*> &VM) { } } - V->dump(); - assert(0 && "Unknown value type: why didn't it get resolved?!"); return 0; } |