diff options
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | 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 <nickc@cygnus.com> + + * 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); |