diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-01-17 21:39:39 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-01-17 21:39:39 +0000 |
commit | 08878dac8f3063898204e204ffc925ccdaac9be7 (patch) | |
tree | 82eca2406f656413d1fda960ef1ad367467d21d9 | |
parent | 09fb7d4dad775e754aa41a359e0cca45d60d5d99 (diff) |
Pastos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25412 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/DwarfWriter.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/llvm/CodeGen/DwarfWriter.h b/include/llvm/CodeGen/DwarfWriter.h index 2745f69cc8..74e230aa3c 100644 --- a/include/llvm/CodeGen/DwarfWriter.h +++ b/include/llvm/CodeGen/DwarfWriter.h @@ -839,7 +839,7 @@ public: /// EmitString - Emit a string with quotes and a null terminator. /// 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. /// @@ -911,35 +911,35 @@ private: /// EmitDebugFrame - Emit info into a debug frame section. /// - void DwarfWriter::EmitDebugFrame(); + void EmitDebugFrame(); /// EmitDebugPubNames - Emit info into a debug pubnames section. /// - void DwarfWriter::EmitDebugPubNames(); + void EmitDebugPubNames(); /// EmitDebugPubTypes - Emit info into a debug pubtypes section. /// - void DwarfWriter::EmitDebugPubTypes(); + void EmitDebugPubTypes(); /// EmitDebugStr - Emit info into a debug str section. /// - void DwarfWriter::EmitDebugStr(); + void EmitDebugStr(); /// EmitDebugLoc - Emit info into a debug loc section. /// - void DwarfWriter::EmitDebugLoc(); + void EmitDebugLoc(); /// EmitDebugARanges - Emit info into a debug aranges section. /// - void DwarfWriter::EmitDebugARanges(); + void EmitDebugARanges(); /// EmitDebugRanges - Emit info into a debug ranges section. /// - void DwarfWriter::EmitDebugRanges(); + void EmitDebugRanges(); /// EmitDebugMacInfo - Emit info into a debug macinfo section. /// - void DwarfWriter::EmitDebugMacInfo(); + void EmitDebugMacInfo(); /// ShouldEmitDwarf - Returns true if Dwarf declarations should be made. /// When called it also checks to see if debug info is newly available. if |