MachineInstr: Remove unused parameter.
[oota-llvm.git] / lib / Target / ARM / ARMBaseInstrInfo.cpp
index cfa88a3ccf4649aa6d8c91e3d90695500478c0b1..d1be5a87047b303e723f90d4dc1475a922be26d2 100644 (file)
@@ -1807,8 +1807,7 @@ static MachineInstr *canFoldIntoMOVCC(unsigned Reg,
       return nullptr;
   }
   bool DontMoveAcrossStores = true;
-  if (!MI->isSafeToMove(TII, /* AliasAnalysis = */ nullptr,
-                        DontMoveAcrossStores))
+  if (!MI->isSafeToMove(/* AliasAnalysis = */ nullptr, DontMoveAcrossStores))
     return nullptr;
   return MI;
 }