diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-01-18 16:54:26 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-01-18 16:54:26 +0000 |
commit | e719a7c40b58a382144212828bfecd4e64210b92 (patch) | |
tree | bd2b59973524e73219f20476e29de35228a95de3 /include/llvm/CodeGen/DwarfWriter.h | |
parent | 99fa0a102ae59e2fa489982157dd508cd32caad7 (diff) | |
download | external_llvm-e719a7c40b58a382144212828bfecd4e64210b92.tar.gz external_llvm-e719a7c40b58a382144212828bfecd4e64210b92.tar.bz2 external_llvm-e719a7c40b58a382144212828bfecd4e64210b92.zip |
Added minimum Dwarf aranges. Cleaned up some section headers. Line number
support now works in gdb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25417 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/DwarfWriter.h')
-rw-r--r-- | include/llvm/CodeGen/DwarfWriter.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/DwarfWriter.h b/include/llvm/CodeGen/DwarfWriter.h index 74e230aa3c..c371783a55 100644 --- a/include/llvm/CodeGen/DwarfWriter.h +++ b/include/llvm/CodeGen/DwarfWriter.h @@ -855,12 +855,12 @@ public: } void EmitLabel(const char *Tag, unsigned Number) const; - /// EmitLabelReference - Emit a reference to a label. + /// EmitReference - Emit a reference to a label. /// - void EmitLabelReference(DWLabel Label) const { - EmitLabelReference(Label.Tag, Label.Number); + void EmitReference(DWLabel Label) const { + EmitReference(Label.Tag, Label.Number); } - void EmitLabelReference(const char *Tag, unsigned Number) const; + void EmitReference(const char *Tag, unsigned Number) const; /// EmitDifference - Emit the difference between two labels. Some /// assemblers do not behave with absolute expressions with data directives, @@ -967,11 +967,11 @@ private: /// void EndModule(); - /// BeginFunction - Emit pre-function debug information. + /// BeginFunction - Gather pre-function debug information. /// void BeginFunction(); - /// EndFunction - Emit post-function debug information. + /// EndFunction - Gather and emit post-function debug information. /// void EndFunction(); }; |