diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 1999-07-20 19:39:27 +0000 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1999-07-20 15:39:27 -0400 |
commit | 81f374ebfb60d4382ee618c45c2e4952d1fc2d8c (patch) | |
tree | 20f215a50e75f411c49094372ab66735da16bf4e | |
parent | a15fe78b44e0da89a297e9dfded16f5018255090 (diff) | |
download | gcc-81f374ebfb60d4382ee618c45c2e4952d1fc2d8c.zip gcc-81f374ebfb60d4382ee618c45c2e4952d1fc2d8c.tar.gz gcc-81f374ebfb60d4382ee618c45c2e4952d1fc2d8c.tar.bz2 |
* dwarf2out.c (output_abbrev_section): Terminate with a zero.
From-SVN: r28192
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 217ac93..d462182 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 20 12:37:30 1999 Hans-Peter Nilsson <hp@bitrange.com> + + * dwarf2out.c (output_abbrev_section): Terminate with a zero. + Tue Jul 20 12:12:27 1999 Jason Merrill <jason@yorick.cygnus.com> * gcc.c (default_compilers, cpp-output): Pass -fpreprocessed. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index d0863fa..90bedcb 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -5135,6 +5135,9 @@ output_abbrev_section () fprintf (asm_out_file, "\t%s\t0,0\n", ASM_BYTE_OP); } + + /* Terminate the table. */ + fprintf (asm_out_file, "\t%s\t0\n", ASM_BYTE_OP); } /* Output location description stack opcode's operands (if any). */ |