diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-02-22 02:53:42 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-02-22 02:53:42 +0000 |
commit | 395bd9cd6374ff7feff4e49c791eb1a5a8867a97 (patch) | |
tree | 1bb8009b7156e1e0207a8ec607646e84c6375e06 /llvm/lib/CodeGen/EarlyIfConversion.cpp | |
parent | d6de2a76127837d1eef55574563347ea8c0210a9 (diff) | |
download | bcm5719-llvm-395bd9cd6374ff7feff4e49c791eb1a5a8867a97.tar.gz bcm5719-llvm-395bd9cd6374ff7feff4e49c791eb1a5a8867a97.zip |
CodeGen: Explicitly convert from iterator to pointer, NFC
llvm-svn: 261508
Diffstat (limited to 'llvm/lib/CodeGen/EarlyIfConversion.cpp')
-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; } |