-Wpointer-sign: dwarf2read.c.
authorPedro Alves <palves@redhat.com>
Fri, 19 Apr 2013 15:34:46 +0000 (15:34 +0000)
committerPedro Alves <palves@redhat.com>
Fri, 19 Apr 2013 15:34:46 +0000 (15:34 +0000)
This fixes the remaining issues necessary to make the DWARF reader
-Wpointer-sign clean.  The 'filename' bit should be obvious.
'constant_pool' holds the contents of an obstack, which are 'char *'.
gdb_byte would work too, but it'd need more casts elsewhere, so I just
chose the minimal approach.  Any way would be fine with me.

gdb/
2013-04-19  Pedro Alves  <palves@redhat.com>

* dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
(read_index_from_section): Add cast to 'char *'.

gdb/ChangeLog
gdb/dwarf2read.c

index a28fdad66c2a8504527b9fc4e025357b6333e8db..0d2e7f39234d850b8932435eac9ad60a290be619 100644 (file)
@@ -1,3 +1,8 @@
+2013-04-19  Pedro Alves  <palves@redhat.com>
+
+       * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
+       (read_index_from_section): Add cast to 'char *'.
+
 2013-04-19  Pedro Alves  <palves@redhat.com>
 
        * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
index 8490eb97e269dcf167d4b2628540adaa144701ca..5a1af02c2ac8d2193f709dad8e9985c598aa1443 100644 (file)
@@ -2103,7 +2103,7 @@ dwarf2_get_dwz_file (void)
           bfd_errmsg (bfd_get_error ()));
   cleanup = make_cleanup (xfree, data);
 
-  filename = data;
+  filename = (const char *) data;
   if (!IS_ABSOLUTE_PATH (filename))
     {
       char *abs = gdb_realpath (dwarf2_per_objfile->objfile->name);
@@ -2764,7 +2764,7 @@ to use the section anyway."),
                             / (2 * sizeof (offset_type)));
   ++i;
 
-  map->constant_pool = addr + MAYBE_SWAP (metadata[i]);
+  map->constant_pool = (char *) (addr + MAYBE_SWAP (metadata[i]));
 
   return 1;
 }