diff options
| -rw-r--r-- | llvm/include/llvm/Target/TargetSubtargetInfo.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Target/TargetSubtargetInfo.h b/llvm/include/llvm/Target/TargetSubtargetInfo.h index fc23b2c6b58..af4cc1ed2b3 100644 --- a/llvm/include/llvm/Target/TargetSubtargetInfo.h +++ b/llvm/include/llvm/Target/TargetSubtargetInfo.h @@ -53,13 +53,13 @@ public:    // scheduling and the specified optimization level meets the requirement    // return true to enable post-register-allocation scheduling. In    // CriticalPathRCs return any register classes that should only be broken -  // if on the critical path.  +  // if on the critical path.    virtual bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,                                       AntiDepBreakMode& Mode,                                       RegClassVector& CriticalPathRCs) const;    // adjustSchedDependency - Perform target specific adjustments to    // the latency of a schedule dependency. -  virtual void adjustSchedDependency(SUnit *def, SUnit *use,  +  virtual void adjustSchedDependency(SUnit *def, SUnit *use,                                       SDep& dep) const { }  };  | 

