Machine Model: Add MicroOpBufferSize and resource BufferSize.
[oota-llvm.git] / lib / Target / ARM / ARMBaseInstrInfo.cpp
index ad1447503fd2e1767d732c567646e896b7eb56c8..496bcb29c662498503a4866a5d392464142eb488 100644 (file)
@@ -3684,8 +3684,7 @@ hasHighOperandLatency(const InstrItineraryData *ItinData,
     return true;
 
   // Hoist VFP / NEON instructions with 4 or higher latency.
-  int Latency = computeOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx,
-                                      /*FindMin=*/false);
+  int Latency = computeOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx);
   if (Latency < 0)
     Latency = getInstrLatency(ItinData, DefMI);
   if (Latency <= 3)