diff options
Diffstat (limited to 'gas/symbols.c')
-rw-r--r-- | gas/symbols.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/symbols.c b/gas/symbols.c index 8e18632..71b8df6 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. |