diff options
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/EarlyIfConversion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/EarlyIfConversion.cpp b/llvm/lib/CodeGen/EarlyIfConversion.cpp index 832492833c3..3e92a7ae168 100644 --- a/llvm/lib/CodeGen/EarlyIfConversion.cpp +++ b/llvm/lib/CodeGen/EarlyIfConversion.cpp @@ -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; } |