From: Jeff Law Date: Sun, 19 Sep 1999 17:38:09 +0000 (+0000) Subject: * config/tc-hppa.c (pa_ip): Handle 'B' operand. X-Git-Tag: gdb-1999-09-21~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=629d9417e180a7aa2bf3e4ff6102c4ccdc46564d;p=external%2Fbinutils.git * config/tc-hppa.c (pa_ip): Handle 'B' operand. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 3c157d5..1071dc7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,7 @@ Sun Sep 19 10:43:31 1999 Jeffrey A Law (law@cygnus.com) + * config/tc-hppa.c (pa_ip): Handle 'B' operand. + * config/tc-hppa.c (pa_ip): Handle 'L' and 'M' operands. * config/tc-hppa.c (pa_ip): Handle 'l' operand. diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index a2e3129..36722bb 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -2706,6 +2706,14 @@ pa_ip (str) break; continue; + /* Handle ,pop completer for new syntax branches. */ + case 'B': + if (*s == ',' && strcasecmp (s + 1, "pop") == 0) + s += 4; + else + break; + continue; + /* Handle ,%r2 completer for new syntax branches. */ case 'L': if (*s == ',' && strcasecmp (s + 1, "%r2") == 0)