* coffread.c (struct coff_symbol): Change c_value type from `long' to
authorPierre Muller <muller@sourceware.org>
Fri, 10 Sep 2010 16:12:22 +0000 (16:12 +0000)
committerPierre Muller <muller@sourceware.org>
Fri, 10 Sep 2010 16:12:22 +0000 (16:12 +0000)
`CORE_ADDRESS' as it might contain target addresses.

gdb/ChangeLog
gdb/coffread.c

index 9a03b8d..dfa62b6 100644 (file)
@@ -1,5 +1,10 @@
 2010-09-10  Pierre Muller  <muller@ics.u-strasbg.fr>
 
+       * coffread.c (struct coff_symbol): Change c_value type from `long' to
+       `CORE_ADDRESS' as it might contain target addresses.
+
+2010-09-10  Pierre Muller  <muller@ics.u-strasbg.fr>
+
        * alpha-mdebug-tdep.c (find_proc_desc): Use SYMBOL_VALUE_BYTES macro
        before cast to pointer to avoid warning.
 
index 85e8140..7f1ecd0 100644 (file)
@@ -131,7 +131,7 @@ struct coff_symbol
     char *c_name;
     int c_symnum;              /* symbol number of this entry */
     int c_naux;                        /* 0 if syment only, 1 if syment + auxent, etc */
-    long c_value;
+    CORE_ADDR c_value;
     int c_sclass;
     int c_secnum;
     unsigned int c_type;