mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 21:29:41 +00:00
[ADCE] Fix capitalization of another local variable
Bring another local variable in compliance with our naming conventions, NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229316 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
07e2323e71
commit
13f4dc0217
@ -69,8 +69,8 @@ bool ADCE::runOnFunction(Function& F) {
|
||||
|
||||
// Propagate liveness backwards to operands.
|
||||
while (!Worklist.empty()) {
|
||||
Instruction* curr = Worklist.pop_back_val();
|
||||
for (Instruction::op_iterator OI = curr->op_begin(), OE = curr->op_end();
|
||||
Instruction* Curr = Worklist.pop_back_val();
|
||||
for (Instruction::op_iterator OI = Curr->op_begin(), OE = Curr->op_end();
|
||||
OI != OE; ++OI)
|
||||
if (Instruction* Inst = dyn_cast<Instruction>(OI))
|
||||
if (Alive.insert(Inst).second)
|
||||
|
Loading…
x
Reference in New Issue
Block a user