diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-02-20 00:44:43 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-02-20 00:44:43 +0000 |
commit | 4ed0c5fb07a2a4db3dd1e6a266ba961429aba2ec (patch) | |
tree | 9869b614ac211d86ca59a1e6058d071e380b1de8 /lib/CodeGen/AsmPrinter/DwarfWriter.cpp | |
parent | 5d0f68134e66956242bc93843f56634bfc4df3a8 (diff) |
Add an accessor method to DwarfWriter to tell of debugging info should be emitted.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfWriter.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfWriter.cpp | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp index 6a29121acc..356f5a89c0 100644 --- a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp @@ -1331,9 +1331,10 @@ class DwarfDebug : public Dwarf { public: - /// ShouldEmitDwarf - Returns true if Dwarf declarations should be made. + /// ShouldEmitDwarfDebug - Returns true if Dwarf debugging declarations should + /// be emitted. /// - bool ShouldEmitDwarf() const { return shouldEmit; } + bool ShouldEmitDwarfDebug() const { return shouldEmit; } /// AssignAbbrevNumber - Define a unique number for the abbreviation. /// @@ -2963,7 +2964,7 @@ public: /// EndModule - Emit all Dwarf sections that should come after the content. /// void EndModule() { - if (!ShouldEmitDwarf()) return; + if (!ShouldEmitDwarfDebug()) return; // Standard sections final addresses. Asm->SwitchToSection(TAI->getTextSection()); @@ -3021,7 +3022,7 @@ public: void BeginFunction(MachineFunction *MF) { this->MF = MF; - if (!ShouldEmitDwarf()) return; + if (!ShouldEmitDwarfDebug()) return; // Begin accumulating function debug information. MMI->BeginFunction(MF); @@ -3040,7 +3041,7 @@ public: /// EndFunction - Gather and emit post-function debug information. /// void EndFunction(MachineFunction *MF) { - if (!ShouldEmitDwarf()) return; + if (!ShouldEmitDwarfDebug()) return; // Define end label for subprogram. EmitLabel("func_end", SubprogramCount); @@ -4329,3 +4330,8 @@ void DwarfWriter::RecordVariable(GlobalVariable *GV, unsigned FrameIndex) { DD->RecordVariable(GV, FrameIndex); } +/// ShouldEmitDwarfDebug - Returns true if Dwarf debugging declarations should +/// be emitted. +bool DwarfWriter::ShouldEmitDwarfDebug() const { + return DD->ShouldEmitDwarfDebug(); +} |