2006-03-09 Paul Brook <paul@codesourcery.com>

bfd/
	* cpu-arm.c (bfd_is_arm_mapping_symbol_name): Recognise additional
	mapping symbols.
gas/testsuite/
	* gas/arm/nomapping.d: New test.
	* gas/arm/nomapping.s: New test.
This commit is contained in:
Paul Brook
2006-03-09 23:05:59 +00:00
parent b74ef8b837
commit 384060486d
5 changed files with 42 additions and 2 deletions

View File

@@ -404,9 +404,12 @@ bfd_arm_get_mach_from_notes (bfd *abfd, const char *note_section)
bfd_boolean
bfd_is_arm_mapping_symbol_name (const char * name)
{
/* The ARM compiler outputs several obsolete forms. Recognize them
in addition to the standard $a, $t and $d. */
return (name != NULL)
&& (name[0] == '$')
&& ((name[1] == 'a') || (name[1] == 't') || (name[1] == 'd'))
&& (name[2] == 0);
&& ((name[1] == 'a') || (name[1] == 't') || (name[1] == 'd')
|| (name[1] == 'm') || (name[1] == 'f') || (name[1] == 'p'))
&& (name[2] == 0 || name[2] == '.');
}