mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 04:49:54 +08:00
* config/tc-hppa.c (pa_ip): Handle 'B' operand.
This commit is contained in:
@ -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.
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user