From: Nick Clifton Date: Wed, 7 Jul 1999 09:34:14 +0000 (+0000) Subject: Use symbol_get_obj() rather than accessing symbolP directly. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cac58fa6efdb5e3fd4b19c40a5378516155ad8ff;p=binutils-gdb.git Use symbol_get_obj() rather than accessing symbolP directly. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 090ba17f574..97e37854024 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +1999-07-07 Nick Clifton + + * config/tc-v850.c (v850_comm): Use symbol_get_obj() ratehr than + accessing symbolP directly. + Tue Jul 6 10:41:42 1999 Jeffrey A Law (law@cygnus.com) * config/tc-hppa.h (tc_frob_symbol): Always punt "$global$" symbol diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c index 7d4a91f1227..c8d308c7faf 100644 --- a/gas/config/tc-v850.c +++ b/gas/config/tc-v850.c @@ -323,7 +323,7 @@ v850_comm (area) } } - if (symbolP->local) + if (symbol_get_obj (symbolP)->local) { segT old_sec; int old_subsec; @@ -435,7 +435,7 @@ v850_comm (area) break; default: - abort(); + abort (); } symbol_set_frag (symbolP, frag_now);