summaryrefslogtreecommitdiff
path: root/gas/symbols.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1999-06-10 14:45:58 +0000
committerIan Lance Taylor <ian@airs.com>1999-06-10 14:45:58 +0000
commit068cf5b30863fe48ecc96baeac783d66c84451bd (patch)
tree4202a0e2dcf2ead960cb805eddcb98fdb7a5e674 /gas/symbols.c
parent3b990cd6a5b8e97dbd334fa6f420736c63873a3d (diff)
downloadbinutils-redhat-068cf5b30863fe48ecc96baeac783d66c84451bd.tar.gz
* symbols.c (copy_symbol_attributes): Convert local symbols to
regular symbols.
Diffstat (limited to 'gas/symbols.c')
-rw-r--r--gas/symbols.c4
1 files changed, 2 insertions, 2 deletions
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.