From 81f374ebfb60d4382ee618c45c2e4952d1fc2d8c Mon Sep 17 00:00:00 2001 From: Hans-Peter Nilsson Date: Tue, 20 Jul 1999 19:39:27 +0000 Subject: [PATCH] * dwarf2out.c (output_abbrev_section): Terminate with a zero. From-SVN: r28192 --- gcc/ChangeLog | 4 ++++ gcc/dwarf2out.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 217ac93f8ab..d462182e294 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 20 12:37:30 1999 Hans-Peter Nilsson + + * dwarf2out.c (output_abbrev_section): Terminate with a zero. + Tue Jul 20 12:12:27 1999 Jason Merrill * gcc.c (default_compilers, cpp-output): Pass -fpreprocessed. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index d0863fabda6..90bedcb0aca 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). */ -- 2.30.2