diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-04 07:48:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-04 07:48:20 +0000 |
commit | 75f50725c1d7f86ee545337b155b4feac66627f6 (patch) | |
tree | f6d81d8592617ea4356bfb080a065578c612b12d /lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 7d73c7f0d618dd6661cd55834c58aa62f22b28fe (diff) |
remove the raw_ostream from various dwarf printing things.
The only thing left is LEB printing, which uses EmitRawText
for now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index 03d9d9935f..5dabd8e48a 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -487,8 +487,8 @@ class DwarfDebug : public DwarfPrinter { /// GetOrCreateSourceID - Look up the source id with the given directory and /// source file names. If none currently exists, create a new id and insert it - /// in the SourceIds map. This can update DirectoryNames and SourceFileNames maps - /// as well. + /// in the SourceIds map. This can update DirectoryNames and SourceFileNames + /// maps as well. unsigned GetOrCreateSourceID(StringRef DirName, StringRef FileName); void constructCompileUnit(MDNode *N); @@ -507,7 +507,7 @@ public: //===--------------------------------------------------------------------===// // Main entry points. // - DwarfDebug(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T); + DwarfDebug(AsmPrinter *A); virtual ~DwarfDebug(); /// ShouldEmitDwarfDebug - Returns true if Dwarf debugging declarations should @@ -516,7 +516,7 @@ public: /// beginModule - Emit all Dwarf sections that should come prior to the /// content. - void beginModule(Module *M, MachineModuleInfo *MMI); + void beginModule(Module *M); /// endModule - Emit all Dwarf sections that should come after the content. /// |