* symbols.c (copy_symbol_attributes): Convert local symbols to
[deliverable/binutils-gdb.git] / gas / symbols.c
index 8e18632d83c7e42063473986e91ed0361f58352a..71b8df694100337e3dcda29a6fb6bf2ac3ae4360 100644 (file)
@@ -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.
This page took 0.023773 seconds and 4 git commands to generate.