diff options
Diffstat (limited to 'llvm/include/llvm/DebugInfo/DIContext.h')
-rw-r--r-- | llvm/include/llvm/DebugInfo/DIContext.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/include/llvm/DebugInfo/DIContext.h b/llvm/include/llvm/DebugInfo/DIContext.h index 9da31e6e173..0d9ea0028e9 100644 --- a/llvm/include/llvm/DebugInfo/DIContext.h +++ b/llvm/include/llvm/DebugInfo/DIContext.h @@ -138,7 +138,6 @@ enum DIDumpType : unsigned { /// dumped. struct DIDumpOptions { unsigned DumpType = DIDT_All; - bool DumpEH = false; bool ShowChildren = false; bool SummarizeTypes = false; bool Verbose = false; @@ -158,8 +157,7 @@ public: virtual void dump(raw_ostream &OS, DIDumpOptions DumpOpts) = 0; - virtual bool verify(raw_ostream &OS, unsigned DumpType = DIDT_All, - DIDumpOptions DumpOpts = {}) { + virtual bool verify(raw_ostream &OS, DIDumpOptions DumpOpts = {}) { // No verifier? Just say things went well. return true; } |