1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

[ADCE] Fix capitalization of another local variable

Bring another local variable in compliance with our naming conventions, NFC.

llvm-svn: 229316
This commit is contained in:
Hal Finkel 2015-02-15 15:45:30 +00:00
parent 6660cfbeba
commit f67e71db4d

View File

@ -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)