mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +08:00
Bug gas/1948
* symbols.c (colon): Also check if now_seg is bss_section when a symbol is being redefined.
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2005-12-05 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
Bug gas/1948
|
||||
* symbols.c (colon): Also check if now_seg is bss_section when a symbol
|
||||
is being redefined.
|
||||
|
||||
2005-12-02 Arnold Metselaar <arnoldm@sourceware.org>
|
||||
|
||||
* config/tc-z80.c (emit_ldreg): fix bug in ld rr,<xx>
|
||||
|
@ -376,6 +376,7 @@ colon (/* Just seen "x:" - rattle symbols & frags. */
|
||||
&& S_IS_EXTERNAL (symbolP))
|
||||
|| S_GET_SEGMENT (symbolP) == bss_section)
|
||||
&& (now_seg == data_section
|
||||
|| now_seg == bss_section
|
||||
|| now_seg == S_GET_SEGMENT (symbolP)))
|
||||
{
|
||||
/* Select which of the 2 cases this is. */
|
||||
|
Reference in New Issue
Block a user