Use symbol_get_obj() rather than accessing symbolP directly.

This commit is contained in:
Nick Clifton 1999-07-07 09:34:14 +00:00
parent 37afc161ab
commit cac58fa6ef
2 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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);