BypassSlowDivision: Assign to reference, don't copy the object.

llvm-svn: 163179
This commit is contained in:
Jakub Staszak 2012-09-04 23:11:11 +00:00
parent eb31ef0577
commit e535c1a12e
1 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ static bool reuseOrInsertFastDiv(Function &F,
// Get instruction operands
Instruction *Instr = J;
DivOpInfo Key(UseSignedOp, Instr->getOperand(0), Instr->getOperand(1));
DivCacheTy::const_iterator CacheI = PerBBDivCache.find(Key);
DivCacheTy::iterator CacheI = PerBBDivCache.find(Key);
if (CacheI == PerBBDivCache.end()) {
// If previous instance does not exist, insert fast div
@ -198,7 +198,7 @@ static bool reuseOrInsertFastDiv(Function &F,
}
// Replace operation value with previously generated phi node
DivPhiNodes Value = CacheI->second;
DivPhiNodes &Value = CacheI->second;
if (UseDivOp) {
// Replace all uses of div instruction with quotient phi node
J->replaceAllUsesWith(Value.Quotient);