From 068cf5b30863fe48ecc96baeac783d66c84451bd Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 10 Jun 1999 14:45:58 +0000 Subject: [PATCH] * symbols.c (copy_symbol_attributes): Convert local symbols to regular symbols. --- gas/ChangeLog | 5 +++++ gas/symbols.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index c52cb47a21..30fbfb5a0e 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 8e18632d83..71b8df6941 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. -- 2.11.0