mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-23 22:23:00 +00:00
Change "tmp." to "tmp" for temporaries created by ScalarEvolutionExpander
for consistency with many other transforms. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41957 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -94,7 +94,7 @@ Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode, Value *LHS,
|
||||
}
|
||||
|
||||
// If we don't have
|
||||
return BinaryOperator::create(Opcode, LHS, RHS, "tmp.", InsertPt);
|
||||
return BinaryOperator::create(Opcode, LHS, RHS, "tmp", InsertPt);
|
||||
}
|
||||
|
||||
Value *SCEVExpander::visitMulExpr(SCEVMulExpr *S) {
|
||||
|
||||
Reference in New Issue
Block a user