mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
* symbols.c (copy_symbol_attributes): Convert local symbols to
regular symbols.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
1999-06-10 Ian Lance Taylor <ian@zembu.com>
|
||||||
|
|
||||||
|
* symbols.c (copy_symbol_attributes): Convert local symbols to
|
||||||
|
regular symbols.
|
||||||
|
|
||||||
1999-06-10 Nick Clifton <nickc@cygnus.com>
|
1999-06-10 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
* config/tc-arm.c (md_parse_option): Add support for ARM920 and
|
* config/tc-arm.c (md_parse_option): Add support for ARM920 and
|
||||||
|
@ -1611,9 +1611,9 @@ copy_symbol_attributes (dest, src)
|
|||||||
symbolS *dest, *src;
|
symbolS *dest, *src;
|
||||||
{
|
{
|
||||||
if (LOCAL_SYMBOL_CHECK (dest))
|
if (LOCAL_SYMBOL_CHECK (dest))
|
||||||
abort ();
|
dest = local_symbol_convert ((struct local_symbol *) dest);
|
||||||
if (LOCAL_SYMBOL_CHECK (src))
|
if (LOCAL_SYMBOL_CHECK (src))
|
||||||
abort ();
|
src = local_symbol_convert ((struct local_symbol *) src);
|
||||||
|
|
||||||
#ifdef BFD_ASSEMBLER
|
#ifdef BFD_ASSEMBLER
|
||||||
/* In an expression, transfer the settings of these flags.
|
/* In an expression, transfer the settings of these flags.
|
||||||
|
Reference in New Issue
Block a user