diff options
author | Nick Clifton <nickc@redhat.com> | 1999-07-07 09:34:14 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1999-07-07 09:34:14 +0000 |
commit | cac58fa6efdb5e3fd4b19c40a5378516155ad8ff (patch) | |
tree | 7aeb34be00e8c098d403faebf355be38a75797a0 /gas/config/tc-v850.c | |
parent | 37afc161ab0fc07e7938428e88cbdb61922f483b (diff) | |
download | gdb-cac58fa6efdb5e3fd4b19c40a5378516155ad8ff.zip gdb-cac58fa6efdb5e3fd4b19c40a5378516155ad8ff.tar.gz gdb-cac58fa6efdb5e3fd4b19c40a5378516155ad8ff.tar.bz2 |
Use symbol_get_obj() rather than accessing symbolP directly.
Diffstat (limited to 'gas/config/tc-v850.c')
-rw-r--r-- | gas/config/tc-v850.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |