From: Ian Lance Taylor Date: Thu, 10 Jun 1999 14:45:58 +0000 (+0000) Subject: * symbols.c (copy_symbol_attributes): Convert local symbols to X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f2f689c83164eb7d75193710065ed963c7fa06b;p=binutils-gdb.git * symbols.c (copy_symbol_attributes): Convert local symbols to regular symbols. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index c52cb47a216..30fbfb5a0ef 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +1999-06-10 Ian Lance Taylor + + * symbols.c (copy_symbol_attributes): Convert local symbols to + regular symbols. + 1999-06-10 Nick Clifton * config/tc-arm.c (md_parse_option): Add support for ARM920 and diff --git a/gas/symbols.c b/gas/symbols.c index 8e18632d83c..71b8df69410 100644 --- a/gas/symbols.c +++ b/gas/symbols.c @@ -1611,9 +1611,9 @@ copy_symbol_attributes (dest, src) symbolS *dest, *src; { if (LOCAL_SYMBOL_CHECK (dest)) - abort (); + dest = local_symbol_convert ((struct local_symbol *) dest); if (LOCAL_SYMBOL_CHECK (src)) - abort (); + src = local_symbol_convert ((struct local_symbol *) src); #ifdef BFD_ASSEMBLER /* In an expression, transfer the settings of these flags.