MachineInstr: Remove unused parameter.
[oota-llvm.git] / lib / CodeGen / EarlyIfConversion.cpp
index 6cde4c249152f45e26ff39b8f71a110c9015db93..092b7f804e4fe71a3cc7e5af26f4947c068489d3 100644 (file)
@@ -220,7 +220,7 @@ bool SSAIfConv::canSpeculateInstrs(MachineBasicBlock *MBB) {
 
     // We never speculate stores, so an AA pointer isn't necessary.
     bool DontMoveAcrossStore = true;
-    if (!I->isSafeToMove(TII, nullptr, DontMoveAcrossStore)) {
+    if (!I->isSafeToMove(nullptr, DontMoveAcrossStore)) {
       DEBUG(dbgs() << "Can't speculate: " << *I);
       return false;
     }