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:
Duncan P. N. Exon Smith 2016-02-22 02:53:42 +00:00
parent 17ef67672c
commit d2c0ad9eb4

View File

@ -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;
}