Revert accidental checkin.
authorAndrew Trick <atrick@apple.com>
Mon, 2 Jul 2012 19:12:29 +0000 (19:12 +0000)
committerAndrew Trick <atrick@apple.com>
Mon, 2 Jul 2012 19:12:29 +0000 (19:12 +0000)
My last checkin was apparently not the branch I intended. It was missing one change (added by chandlerc), and contained a spurious change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159548 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMBaseInstrInfo.cpp

index 7227e62c7c30c416bdddc9c3800839830bc3cf38..57c20ae6a44c4a154b144dab1efb313f2cf9043f 100644 (file)
@@ -3057,10 +3057,9 @@ unsigned ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
   unsigned Class = MCID.getSchedClass();
 
   // For instructions with variable uops, use uops as latency.
-  if (!ItinData->isEmpty() && ItinData->getNumMicroOps(Class) < 0) {
-    dbgs() << "UOPS " << getNumMicroOps(ItinData, MI) << " " << *MI << '\n';
+  if (!ItinData->isEmpty() && ItinData->getNumMicroOps(Class) < 0)
     return getNumMicroOps(ItinData, MI);
-  }
+
   // For the common case, fall back on the itinerary's latency.
   unsigned Latency = ItinData->getStageLatency(Class);