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 /gcc/dwarf2out.c | |
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
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 3 |
1 files changed, 3 insertions, 0 deletions
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). */ |