git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25412 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Laskey 2006-01-17 21:39:39 +00:00
parent 09fb7d4dad
commit 08878dac8f

View File

@ -839,7 +839,7 @@ public:
/// EmitString - Emit a string with quotes and a null terminator. /// EmitString - Emit a string with quotes and a null terminator.
/// Special characters are emitted properly. (Eg. '\t') /// Special characters are emitted properly. (Eg. '\t')
void DwarfWriter::EmitString(const std::string &String) const; void EmitString(const std::string &String) const;
/// PrintLabelName - Print label name in form used by Dwarf writer. /// PrintLabelName - Print label name in form used by Dwarf writer.
/// ///
@ -911,35 +911,35 @@ private:
/// EmitDebugFrame - Emit info into a debug frame section. /// EmitDebugFrame - Emit info into a debug frame section.
/// ///
void DwarfWriter::EmitDebugFrame(); void EmitDebugFrame();
/// EmitDebugPubNames - Emit info into a debug pubnames section. /// EmitDebugPubNames - Emit info into a debug pubnames section.
/// ///
void DwarfWriter::EmitDebugPubNames(); void EmitDebugPubNames();
/// EmitDebugPubTypes - Emit info into a debug pubtypes section. /// EmitDebugPubTypes - Emit info into a debug pubtypes section.
/// ///
void DwarfWriter::EmitDebugPubTypes(); void EmitDebugPubTypes();
/// EmitDebugStr - Emit info into a debug str section. /// EmitDebugStr - Emit info into a debug str section.
/// ///
void DwarfWriter::EmitDebugStr(); void EmitDebugStr();
/// EmitDebugLoc - Emit info into a debug loc section. /// EmitDebugLoc - Emit info into a debug loc section.
/// ///
void DwarfWriter::EmitDebugLoc(); void EmitDebugLoc();
/// EmitDebugARanges - Emit info into a debug aranges section. /// EmitDebugARanges - Emit info into a debug aranges section.
/// ///
void DwarfWriter::EmitDebugARanges(); void EmitDebugARanges();
/// EmitDebugRanges - Emit info into a debug ranges section. /// EmitDebugRanges - Emit info into a debug ranges section.
/// ///
void DwarfWriter::EmitDebugRanges(); void EmitDebugRanges();
/// EmitDebugMacInfo - Emit info into a debug macinfo section. /// EmitDebugMacInfo - Emit info into a debug macinfo section.
/// ///
void DwarfWriter::EmitDebugMacInfo(); void EmitDebugMacInfo();
/// ShouldEmitDwarf - Returns true if Dwarf declarations should be made. /// ShouldEmitDwarf - Returns true if Dwarf declarations should be made.
/// When called it also checks to see if debug info is newly available. if /// When called it also checks to see if debug info is newly available. if