From cac58fa6efdb5e3fd4b19c40a5378516155ad8ff Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 7 Jul 1999 09:34:14 +0000 Subject: [PATCH] Use symbol_get_obj() rather than accessing symbolP directly. --- gas/ChangeLog | 5 +++++ gas/config/tc-v850.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 090ba17..97e3785 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 7d4a91f..c8d308c 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); -- 2.7.4