2006-10-31 Paul Brook <paul@codesourcery.com>
gas/ * config/tc-arm.c (arm_adjust_symtab): Don't use STT_ARM_16BIT for EABIv4.
This commit is contained in:
parent
2087ad8497
commit
3ba674705b
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2006-10-31 Paul Brook <paul@codesourcery.com>
|
||||||
|
|
||||||
|
* config/tc-arm.c (arm_adjust_symtab): Don't use STT_ARM_16BIT
|
||||||
|
for EABIv4.
|
||||||
|
|
||||||
2006-10-31 Paul Brook <paul@codesourcery.com>
|
2006-10-31 Paul Brook <paul@codesourcery.com>
|
||||||
|
|
||||||
gas/
|
gas/
|
||||||
|
|
|
@ -19159,7 +19159,7 @@ arm_adjust_symtab (void)
|
||||||
if (THUMB_IS_FUNC (sym))
|
if (THUMB_IS_FUNC (sym))
|
||||||
elf_sym->internal_elf_sym.st_info =
|
elf_sym->internal_elf_sym.st_info =
|
||||||
ELF_ST_INFO (bind, STT_ARM_TFUNC);
|
ELF_ST_INFO (bind, STT_ARM_TFUNC);
|
||||||
else
|
else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
|
||||||
elf_sym->internal_elf_sym.st_info =
|
elf_sym->internal_elf_sym.st_info =
|
||||||
ELF_ST_INFO (bind, STT_ARM_16BIT);
|
ELF_ST_INFO (bind, STT_ARM_16BIT);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue