diff options
Diffstat (limited to 'llvm/lib/IR/AsmWriter.cpp')
| -rw-r--r-- | llvm/lib/IR/AsmWriter.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/lib/IR/AsmWriter.cpp b/llvm/lib/IR/AsmWriter.cpp index 1096e57..3c222f5 100644 --- a/llvm/lib/IR/AsmWriter.cpp +++ b/llvm/lib/IR/AsmWriter.cpp @@ -843,7 +843,7 @@ public:    SlotTracker(const SlotTracker &) = delete;    SlotTracker &operator=(const SlotTracker &) = delete; -  ~SlotTracker() = default; +  ~SlotTracker() override = default;    void setProcessHook(        std::function<void(AbstractSlotTrackerStorage *, const Module *, bool)>); @@ -5323,7 +5323,7 @@ struct MDTreeAsmWriterContext : public AsmWriterContext {      --Level;    } -  ~MDTreeAsmWriterContext() { +  ~MDTreeAsmWriterContext() override {      for (const auto &Entry : Buffer) {        MainOS << "\n";        unsigned NumIndent = Entry.first * 2U; | 
