fConversion: Attempt #2 at fixing the MSVC build.
authorBenjamin Kramer <benny.kra@googlemail.com>
Fri, 11 Oct 2013 19:49:09 +0000 (19:49 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Fri, 11 Oct 2013 19:49:09 +0000 (19:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192492 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/IfConversion.cpp

index a816e5ec223f6e1183c6310d41b36a6a372e31a1..81619d1d46216d07dd1236f668af02314bf18c7d 100644 (file)
@@ -1313,8 +1313,8 @@ bool IfConverter::IfConvertDiamond(BBInfo &BBI, IfcvtKind Kind,
   // This is everything used+live in BB2 after the duplicated instructions. We
   // can compute this set by simulating liveness backwards from the end of BB2.
   LiveRegUnits DontKill;
-  for (MachineBasicBlock::reverse_instr_iterator I = BBI2->BB->rbegin(),
-       E = MachineBasicBlock::reverse_instr_iterator(&*DI2); I != E; ++I) {
+  for (MachineBasicBlock::reverse_iterator I = BBI2->BB->rbegin(),
+       E = MachineBasicBlock::reverse_iterator(DI2); I != E; ++I) {
     DontKill.StepBackward(*I, *TRI);
   }