mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-30 15:10:33 +00:00
CodeGen: Explicitly convert from iterator to pointer, NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@261508 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
17ef67672c
commit
d2c0ad9eb4
@ -278,7 +278,7 @@ bool SSAIfConv::findInsertionPoint() {
|
||||
while (I != B) {
|
||||
--I;
|
||||
// Some of the conditional code depends in I.
|
||||
if (InsertAfter.count(I)) {
|
||||
if (InsertAfter.count(&*I)) {
|
||||
DEBUG(dbgs() << "Can't insert code after " << *I);
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user