diff options
Diffstat (limited to 'include/llvm/CodeGen/ScheduleHazardRecognizer.h')
-rw-r--r-- | include/llvm/CodeGen/ScheduleHazardRecognizer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/ScheduleHazardRecognizer.h b/include/llvm/CodeGen/ScheduleHazardRecognizer.h index 214be2794ba37..ace4a2d836ca8 100644 --- a/include/llvm/CodeGen/ScheduleHazardRecognizer.h +++ b/include/llvm/CodeGen/ScheduleHazardRecognizer.h @@ -29,10 +29,10 @@ protected: /// state. Important to restore the state after backtracking. Additionally, /// MaxLookAhead=0 identifies a fake recognizer, allowing the client to /// bypass virtual calls. Currently the PostRA scheduler ignores it. - unsigned MaxLookAhead; + unsigned MaxLookAhead = 0; public: - ScheduleHazardRecognizer(): MaxLookAhead(0) {} + ScheduleHazardRecognizer() = default; virtual ~ScheduleHazardRecognizer(); enum HazardType { @@ -117,6 +117,6 @@ public: } }; -} +} // end namespace llvm -#endif +#endif // LLVM_CODEGEN_SCHEDULEHAZARDRECOGNIZER_H |