]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gold/
authorCary Coutant <ccoutant@google.com>
Tue, 8 May 2012 18:00:02 +0000 (18:00 +0000)
committerCary Coutant <ccoutant@google.com>
Tue, 8 May 2012 18:00:02 +0000 (18:00 +0000)
* layout.cc (gdb_sections): Update GDB version, add .debug_addr.
(lines_only_debug_sections): Likewise.

gold/ChangeLog
gold/layout.cc

index a0a461f4846f6e4aabceaee8c28b39b3c5c39c3d..9e28c6273d09a18cc8aaebf1ee10e03642087f85 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-08  Cary Coutant  <ccoutant@google.com>
+
+       * layout.cc (gdb_sections): Update GDB version, add .debug_addr.
+       (lines_only_debug_sections): Likewise.
+
 2012-05-02  Roland McGrath  <mcgrathr@google.com>
 
        * nacl.cc: New file.
index 7155f22e7fdb91e3049927abf81a3c44aa77574c..b58f9d2e40df244c82d2aa40e75067040aa8b6e2 100644 (file)
@@ -455,32 +455,36 @@ Layout::Hash_key::operator()(const Layout::Key& k) const
 
 // Returns whether the given section is in the list of
 // debug-sections-used-by-some-version-of-gdb.  Currently,
-// we've checked versions of gdb up to and including 6.7.1.
+// we've checked versions of gdb up to and including 7.4.
 
 static const char* gdb_sections[] =
 { ".debug_abbrev",
-  // ".debug_aranges",   // not used by gdb as of 6.7.1
+  ".debug_addr",         // Fission extension
+  // ".debug_aranges",   // not used by gdb as of 7.4
   ".debug_frame",
   ".debug_info",
   ".debug_types",
   ".debug_line",
   ".debug_loc",
   ".debug_macinfo",
-  // ".debug_pubnames",  // not used by gdb as of 6.7.1
+  // ".debug_pubnames",  // not used by gdb as of 7.4
+  // ".debug_pubtypes",  // not used by gdb as of 7.4
   ".debug_ranges",
   ".debug_str",
 };
 
 static const char* lines_only_debug_sections[] =
 { ".debug_abbrev",
-  // ".debug_aranges",   // not used by gdb as of 6.7.1
+  // ".debug_addr",      // Fission extension
+  // ".debug_aranges",   // not used by gdb as of 7.4
   // ".debug_frame",
   ".debug_info",
   // ".debug_types",
   ".debug_line",
   // ".debug_loc",
   // ".debug_macinfo",
-  // ".debug_pubnames",  // not used by gdb as of 6.7.1
+  // ".debug_pubnames",  // not used by gdb as of 7.4
+  // ".debug_pubtypes",  // not used by gdb as of 7.4
   // ".debug_ranges",
   ".debug_str",
 };