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 | 83f03bfc3f60a05b9ca5807f837c09798632095e (patch) | |
tree | 6a84ca57c4dc697c050235ea7ec27aa153bfd783 /lib/Transforms/Utils/ValueMapper.cpp | |
parent | f72716d81f64664e6897d9f2e8a7d071bad1de68 (diff) |
Implement a new method, CloneAndPruneFunctionInto, as documented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28519 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/ValueMapper.cpp')
-rw-r--r-- | lib/Transforms/Utils/ValueMapper.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Transforms/Utils/ValueMapper.cpp b/lib/Transforms/Utils/ValueMapper.cpp index b309f9c0e2..d4be6e47ef 100644 --- a/lib/Transforms/Utils/ValueMapper.cpp +++ b/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; } |