diff options
author | jimb <jimb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-24 19:16:56 +0000 |
---|---|---|
committer | jimb <jimb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-24 19:16:56 +0000 |
commit | 323583a15129744cb92a8052e530f35238e15f03 (patch) | |
tree | 962b31a5a399e6b625c2732a1f08264dfc3a6a24 | |
parent | 99c4686984235158467979275570e6d3a0c2b777 (diff) | |
download | ppe42-gcc-323583a15129744cb92a8052e530f35238e15f03.tar.gz ppe42-gcc-323583a15129744cb92a8052e530f35238e15f03.zip |
* dwarf2out.c (dwarf2out_finish): Don't forget to emit a final
entry with a type code of zero, marking the end of the compilation
unit's macro info.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53849 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 35e91c49add..29027a11361 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-05-24 Jim Blandy <jimb@redhat.com> + + * dwarf2out.c (dwarf2out_finish): Don't forget to emit a final + entry with a type code of zero, marking the end of the compilation + unit's macro info. + 2002-05-24 Richard Henderson <rth@redhat.com> * varasm.c (asm_output_bss): Always output one byte. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 31daf427069..f6ef2fa3300 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -12312,6 +12312,7 @@ dwarf2out_finish (input_filename) { named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG); dw2_asm_output_data (1, DW_MACINFO_end_file, "End file"); + dw2_asm_output_data (1, 0, "End compilation unit"); } /* If we emitted any DW_FORM_strp form attribute, output the string |