* dwarf2dbg.c (out_debug_abbrev): Terminate the abbreviations
authorRichard Henderson <rth@redhat.com>
Thu, 1 Feb 2001 18:08:47 +0000 (18:08 +0000)
committerRichard Henderson <rth@redhat.com>
Thu, 1 Feb 2001 18:08:47 +0000 (18:08 +0000)
        for the compilation unit with a zero byte.

gas/ChangeLog
gas/dwarf2dbg.c

index dc97038a98aaad248d87debeaae95d412006f1bb..1fb85e740178746e9e7bdbba414cf35feeaad25d 100644 (file)
@@ -1,3 +1,8 @@
+2001-02-01  Momchil Velikov  <velco@fadata.bg>
+
+       * dwarf2dbg.c (out_debug_abbrev): Terminate the abbreviations
+       for the compilation unit with a zero byte.
+
 2001-01-30  Alan Modra  <alan@linuxcare.com.au>
 
        * config/tc-hppa.c (pa_ip): Support 12 bit branches to absolute
index c24d85ab4ee1253cfc0239812a9b0fba45851c51..0068f7a620b0333dfc32ae632385899fa0b98a4f 100644 (file)
@@ -1099,6 +1099,9 @@ out_debug_abbrev (abbrev_seg)
   out_abbrev (DW_AT_producer, DW_FORM_string);
   out_abbrev (DW_AT_language, DW_FORM_data2);
   out_abbrev (0, 0);
+
+  /* Terminate the abbreviations for this compilation unit.  */
+  out_byte (0);
 }
 
 /* Emit a description of this compilation unit for .debug_info.  */
This page took 0.02759 seconds and 4 git commands to generate.