Fixes submitted by Karl Berry (karl@nermal.hq.ileaf.com):
authorFred Fish <fnf@specifix.com>
Fri, 5 Mar 1993 01:04:48 +0000 (01:04 +0000)
committerFred Fish <fnf@specifix.com>
Fri, 5 Mar 1993 01:04:48 +0000 (01:04 +0000)
* m88k-pinsn.c (sprint_address):  Use SYMBOL_NAME macro to
access symbol name.

gdb/ChangeLog
gdb/m88k-pinsn.c

index fdb70d376606c56845efd7195196acaf7f4f2182..525ee6614ac496258b4a8bbde7890b74b7f7b2e8 100644 (file)
@@ -1,7 +1,10 @@
 Thu Mar  4 08:22:55 1993  Fred Fish  (fnf@cygnus.com)
 
+       Fixes submitted by Karl Berry (karl@nermal.hq.ileaf.com):
+       * m88k-pinsn.c (sprint_address):  Use SYMBOL_NAME macro to
+       access symbol name.  
        * m88k-nat-c (SXIP_OFFSET, SNIP_OFFSET, SFIP_OFFSET):  Enclose
-       macro definitions in parenthesis.  Bug reported by karl@hq.ileaf.com.
+       macro definitions in parenthesis.
 
        * dbxread.c (dbx_symfile_init):  Catch the case where there is
        no string table, but the only way we find out is by reading zero
index b1060e01adfbed1c8c0174e9d205afb2bcbe209b..b427b01707e26d82566fb49cba69b9c138f1970c 100644 (file)
@@ -346,7 +346,7 @@ void sprint_address (addr, buffer)
            name = SYMBOL_NAME (msymbol);
            name_location = SYMBOL_VALUE_ADDRESS (msymbol);
        } else {
-           name = fs->name;
+           name = SYMBOL_NAME (fs);
            name_location = BLOCK_START (SYMBOL_BLOCK_VALUE (fs));
        }