forked from OSchip/llvm-project
fix an obscure and tricky bug the inliner can hit sometimes.
llvm-svn: 34531
This commit is contained in:
parent
83908e664f
commit
1e48acb858
|
@ -95,7 +95,7 @@ Value *llvm::MapValue(const Value *V, ValueMapTy &VM) {
|
|||
return VM[V] = ConstantVector::get(Values);
|
||||
}
|
||||
}
|
||||
return VMSlot = C;
|
||||
return VM[V] = C;
|
||||
|
||||
} else {
|
||||
assert(0 && "Unknown type of constant!");
|
||||
|
|
Loading…
Reference in New Issue