aboutsummaryrefslogtreecommitdiff
path: root/gas/symbols.c
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2001-04-14 06:57:28 +0000
committerAlexandre Oliva <aoliva@redhat.com>2001-04-14 06:57:28 +0000
commit8c5e1ccd72ae2dd19ff29d00278dc7558f6babb4 (patch)
tree7d13e8cf102a5fc0337fec91fbb107bf28651b74 /gas/symbols.c
parenteb0dfd58c8702a985afe93d26baa56d0c356ee9a (diff)
downloadfsf-binutils-gdb-8c5e1ccd72ae2dd19ff29d00278dc7558f6babb4.zip
fsf-binutils-gdb-8c5e1ccd72ae2dd19ff29d00278dc7558f6babb4.tar.gz
fsf-binutils-gdb-8c5e1ccd72ae2dd19ff29d00278dc7558f6babb4.tar.bz2
* struc-symbol.h (struct local_symbol): New TC_LOCAL_SYMFIELD_TYPE.
* symbols.c (local_symbol_convert): Call TC_LOCAL_SYMFIELD_CONVERT.
Diffstat (limited to 'gas/symbols.c')
-rw-r--r--gas/symbols.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gas/symbols.c b/gas/symbols.c
index 913686c..98623eb 100644
--- a/gas/symbols.c
+++ b/gas/symbols.c
@@ -255,6 +255,10 @@ local_symbol_convert (locsym)
/* Local symbols are always either defined or used. */
ret->sy_used = 1;
+#ifdef TC_LOCAL_SYMFIELD_CONVERT
+ TC_LOCAL_SYMFIELD_CONVERT (locsym, ret);
+#endif
+
symbol_table_insert (ret);
local_symbol_mark_converted (locsym);