diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-05 05:31:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-05 05:31:04 +0000 |
commit | 105d69759312a9544ec55954b3fb59bdb7e224df (patch) | |
tree | b0e7eb94981f9e78e98ddd0448019e373ded9bdc | |
parent | 6d7337896f1bcdfbdee90c9c33371c2a373f422a (diff) |
reprivatize now that DwarfWriter is gone.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100409 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.h | 3 | ||||
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index eb342042f1..323234cf08 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -73,10 +73,9 @@ public: class DwarfDebug { /// Asm - Target of Dwarf emission. AsmPrinter *Asm; -public: + /// MMI - Collected machine module information. MachineModuleInfo *MMI; -private: //===--------------------------------------------------------------------===// // Attributes used to construct specific Dwarf sections. diff --git a/lib/CodeGen/AsmPrinter/DwarfException.h b/lib/CodeGen/AsmPrinter/DwarfException.h index 15020b86c9..6d6d730d5d 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.h +++ b/lib/CodeGen/AsmPrinter/DwarfException.h @@ -38,10 +38,9 @@ class AsmPrinter; class DwarfException { /// Asm - Target of Dwarf emission. AsmPrinter *Asm; -public: + /// MMI - Collected machine module information. MachineModuleInfo *MMI; -private: struct FunctionEHFrameInfo { MCSymbol *FunctionEHSym; // L_foo.eh |