mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
Use symbol_get_obj() rather than accessing symbolP directly.
This commit is contained in:
@ -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)
|
Tue Jul 6 10:41:42 1999 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
* config/tc-hppa.h (tc_frob_symbol): Always punt "$global$" symbol
|
* config/tc-hppa.h (tc_frob_symbol): Always punt "$global$" symbol
|
||||||
|
@ -323,7 +323,7 @@ v850_comm (area)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (symbolP->local)
|
if (symbol_get_obj (symbolP)->local)
|
||||||
{
|
{
|
||||||
segT old_sec;
|
segT old_sec;
|
||||||
int old_subsec;
|
int old_subsec;
|
||||||
@ -435,7 +435,7 @@ v850_comm (area)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
abort();
|
abort ();
|
||||||
}
|
}
|
||||||
|
|
||||||
symbol_set_frag (symbolP, frag_now);
|
symbol_set_frag (symbolP, frag_now);
|
||||||
|
Reference in New Issue
Block a user