* write.c (fixup_segment): Handle fixups for SEC_MERGE sections as
for undefined symbols.
This commit is contained in:
parent
ff44f8e352
commit
7e9250a361
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-10-17 Hans-Peter Nilsson <hp@bitrange.com>
|
||||
|
||||
* write.c (fixup_segment): Handle fixups for SEC_MERGE sections as
|
||||
for undefined symbols.
|
||||
|
||||
2001-10-17 Chris Demetriou <cgd@broadcom.com>
|
||||
|
||||
* doc/as.texinfo (MIPS ISA options): Added accidentally
|
||||
|
|
|
@ -2810,6 +2810,9 @@ fixup_segment (fixP, this_segment_type)
|
|||
else if (add_symbol_segment == undefined_section
|
||||
#ifdef BFD_ASSEMBLER
|
||||
|| bfd_is_com_section (add_symbol_segment)
|
||||
|| (bfd_get_section_flags (stdoutput,
|
||||
add_symbol_segment)
|
||||
& SEC_MERGE) != 0
|
||||
#endif
|
||||
)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue