mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-01 20:12:01 +08:00
Fix assertion failure for xtensa linker.
* emultempl/xtensaelf.em (xtensa_wild_group_interleave_callback): Only check for by_name sorting.
This commit is contained in:

committed by
Nick Clifton

parent
ddff3d84be
commit
73d5923e48
@ -1,3 +1,8 @@
|
||||
2017-08-02 Max Filippov <jcmvbkbc@gmail.com>
|
||||
|
||||
* emultempl/xtensaelf.em (xtensa_wild_group_interleave_callback):
|
||||
Only check for by_name sorting.
|
||||
|
||||
2017-08-02 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 21884
|
||||
|
@ -1432,7 +1432,7 @@ xtensa_wild_group_interleave_callback (lang_statement_union_type *statement)
|
||||
struct wildcard_list *l;
|
||||
for (l = w->section_list; l != NULL; l = l->next)
|
||||
{
|
||||
if (l->spec.sorted != none)
|
||||
if (l->spec.sorted == by_name)
|
||||
{
|
||||
no_reorder = TRUE;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user