From: Jeff Law Date: Thu, 5 Aug 1999 00:09:42 +0000 (+0000) Subject: * config/tc-hppa.c (pa_chk_field_selector): Allow 3 byte X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=39ba5561643f4922c1fa333028d3da3ecdd41a68;p=deliverable%2Fbinutils-gdb.git * config/tc-hppa.c (pa_chk_field_selector): Allow 3 byte selectors for ELF too. (selector_table): Add "ltp" and "rtp" selectors. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 9d399043ac..ce9b9efc5c 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +Wed Aug 4 13:12:17 1999 Jeffrey A Law (law@cygnus.com) + + * config/tc-hppa.c (pa_chk_field_selector): Allow 3 byte + selectors for ELF too. + (selector_table): Add "ltp" and "rtp" selectors. + 1999-08-04 Alan Modra * config/tc-i386.c (i386_operand): No need to change diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index 073e9e63e8..38762f82e6 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -997,6 +997,7 @@ static const struct selector_entry selector_table[] = {"lr", e_lrsel}, {"ls", e_lssel}, {"lt", e_ltsel}, + {"ltp", e_ltpsel}, {"n", e_nsel}, {"nl", e_nlsel}, {"nlr", e_nlrsel}, @@ -1007,6 +1008,7 @@ static const struct selector_entry selector_table[] = {"rr", e_rrsel}, {"rs", e_rssel}, {"rt", e_rtsel}, + {"rtp", e_rtpsel}, {"t", e_tsel}, }; @@ -3629,13 +3631,11 @@ pa_chk_field_selector (str) name[0] = tolower ((*str)[0]), name[1] = tolower ((*str)[1]), name[2] = 0; -#ifdef OBJ_SOM else if ((*str)[3] == '\'' || (*str)[3] == '%') name[0] = tolower ((*str)[0]), name[1] = tolower ((*str)[1]), name[2] = tolower ((*str)[2]), name[3] = 0; -#endif else return e_fsel;