mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-13 15:37:24 +00:00
do not repeatedly dereference use_iterator
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107962 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8fe5ccc585
commit
b654435712
@ -365,10 +365,11 @@ DbgDeclareInst *InstCombiner::hasOneUsePlusDeclare(Value *V) {
|
||||
return 0;
|
||||
for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
|
||||
UI != E; ++UI) {
|
||||
if (DbgDeclareInst *DI = dyn_cast<DbgDeclareInst>(UI))
|
||||
User *U = *UI;
|
||||
if (DbgDeclareInst *DI = dyn_cast<DbgDeclareInst>(U))
|
||||
return DI;
|
||||
if (isa<BitCastInst>(UI) && UI->hasOneUse()) {
|
||||
if (DbgDeclareInst *DI = dyn_cast<DbgDeclareInst>(UI->use_begin()))
|
||||
if (isa<BitCastInst>(U) && U->hasOneUse()) {
|
||||
if (DbgDeclareInst *DI = dyn_cast<DbgDeclareInst>(U->use_begin()))
|
||||
return DI;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user