From efacb0fb7363ed9c22730e8726f3ccec162624e5 Mon Sep 17 00:00:00 2001 From: Daniel Jacobowitz Date: Thu, 4 May 2006 18:15:21 +0000 Subject: * bfd/cpu-arm.c (bfd_is_arm_mapping_symbol_name): Accept more mapping symbols. --- bfd/cpu-arm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bfd/cpu-arm.c') diff --git a/bfd/cpu-arm.c b/bfd/cpu-arm.c index a28a1f9..0f0da06 100644 --- a/bfd/cpu-arm.c +++ b/bfd/cpu-arm.c @@ -405,11 +405,11 @@ 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. */ + in addition to the standard $a, $t and $d. We are somewhat loose + in what we accept here, since the full set is not documented. */ return (name != NULL) && (name[0] == '$') - && ((name[1] == 'a') || (name[1] == 't') || (name[1] == 'd') - || (name[1] == 'm') || (name[1] == 'f') || (name[1] == 'p')) + && (name[1] >= 'a' && name[1] <= 'z') && (name[2] == 0 || name[2] == '.'); } -- cgit v1.1