public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug debug/48041] New: dwarf2out emits unnecessary null byte in empty .debug_abbrev section
@ 2011-03-09  9:55 mark at gcc dot gnu.org
  2011-03-25 10:17 ` [Bug debug/48041] " mark at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: mark at gcc dot gnu.org @ 2011-03-09  9:55 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48041

           Summary: dwarf2out emits unnecessary null byte in empty
                    .debug_abbrev section
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: mark@gcc.gnu.org


Detected by the elfutils dwarflint tool.

Example:
$ echo > empty.c 
$ gcc -g -c empty.c 
$ readelf -x .debug_abbrev empty.o
Hex dump of section '.debug_abbrev':
  0x00000000 00                                  .

Although harmless it might add up if a project has a lot of objects without any
real debuginfo in them. There might not actually be many such projects though.

The fix seems easy:

Index: gcc/dwarf2out.c
===================================================================
--- gcc/dwarf2out.c    (revision 170813)
+++ gcc/dwarf2out.c    (working copy)
@@ -11058,7 +11058,8 @@
     }

   /* Terminate the table.  */
-  dw2_asm_output_data (1, 0, NULL);
+  if (abbrev_die_table_in_use > 1)
+    dw2_asm_output_data (1, 0, NULL);
 }

 /* Output a symbol we can use to refer to this DIE from another CU.  */

Bootstraps fine on x86_64-gnu-linux and no regressions seen with make check -k

I'll submit it to gcc-patches when the tree opens up again for stage one.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-03-22  9:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-09  9:55 [Bug debug/48041] New: dwarf2out emits unnecessary null byte in empty .debug_abbrev section mark at gcc dot gnu.org
2011-03-25 10:17 ` [Bug debug/48041] " mark at gcc dot gnu.org
2011-03-28  9:32 ` mark at gcc dot gnu.org
2011-06-29 10:22 ` ro at gcc dot gnu.org
2012-03-22  8:47 ` rguenth at gcc dot gnu.org
2012-03-22  9:31 ` mark at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).