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:
Paul Brook 2006-10-31 20:33:40 +00:00
parent 2087ad8497
commit 3ba674705b
2 changed files with 6 additions and 1 deletions

View file

@ -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>
gas/

View file

@ -19159,7 +19159,7 @@ arm_adjust_symtab (void)
if (THUMB_IS_FUNC (sym))
elf_sym->internal_elf_sym.st_info =
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_ST_INFO (bind, STT_ARM_16BIT);
}