diff options
author | Jeff Law <law@redhat.com> | 1999-09-19 17:38:09 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-09-19 17:38:09 +0000 |
commit | 629d9417e180a7aa2bf3e4ff6102c4ccdc46564d (patch) | |
tree | 93301a2de12412d88e005135c110b18b7b4f7760 /gas/config | |
parent | 69138680ad77d102be169c65957f003f003a6687 (diff) | |
download | gdb-629d9417e180a7aa2bf3e4ff6102c4ccdc46564d.zip gdb-629d9417e180a7aa2bf3e4ff6102c4ccdc46564d.tar.gz gdb-629d9417e180a7aa2bf3e4ff6102c4ccdc46564d.tar.bz2 |
* config/tc-hppa.c (pa_ip): Handle 'B' operand.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-hppa.c | 8 |
1 files changed, 8 insertions, 0 deletions
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) |