Remove unused Target argument from MCInstPrinter ctor functions.
[oota-llvm.git] / lib / Target / Hexagon / HexagonSubtarget.h
index 57de5461f0829e71b5ba12707ca63ee3dfec4365..780567bcd36b9fb4961ff02a783aac84b29a7c70 100644 (file)
@@ -85,6 +85,11 @@ public:
   bool hasV5TOps() const { return getHexagonArchVersion() >= V5; }
   bool hasV5TOpsOnly() const { return getHexagonArchVersion() == V5; }
   bool modeIEEERndNear() const { return ModeIEEERndNear; }
+  bool enableMachineScheduler() const override;
+  // Always use the TargetLowering default scheduler.
+  // FIXME: This will use the vliw scheduler which is probably just hurting
+  // compiler time and will be removed eventually anyway.
+  bool enableMachineSchedDefaultSched() const override { return false; }
 
   const std::string &getCPUString () const { return CPUString; }