mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-23 22:23:00 +00:00
rename use_const_iterator to const_use_iterator for consistency's sake
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99564 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1709,7 +1709,7 @@ static bool AddressIsTaken(const GlobalValue *GV) {
|
||||
// Delete any dead constantexpr klingons.
|
||||
GV->removeDeadConstantUsers();
|
||||
|
||||
for (Value::use_const_iterator UI = GV->use_begin(), E = GV->use_end();
|
||||
for (Value::const_use_iterator UI = GV->use_begin(), E = GV->use_end();
|
||||
UI != E; ++UI) {
|
||||
const User *U = *UI;
|
||||
if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
|
||||
|
||||
Reference in New Issue
Block a user