IfConversion: Try to unbreak the MSVC build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192487 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2013-10-11 19:39:48 +00:00
parent 5af763cb2a
commit ae6fa27a0c

View File

@ -1314,7 +1314,7 @@ bool IfConverter::IfConvertDiamond(BBInfo &BBI, IfcvtKind Kind,
// 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_iterator(DI2); I != E; ++I) {
E = MachineBasicBlock::reverse_instr_iterator(&*DI2); I != E; ++I) {
DontKill.StepBackward(*I, *TRI);
}