diff options
author | Jeff Law <law@redhat.com> | 1999-09-19 16:58:33 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-09-19 16:58:33 +0000 |
commit | 3db6e6bd573a26b7abb9c7a30dbbcc97e7a5bace (patch) | |
tree | 15d1f8090042daab76dd37152ce7f6a91bee373f /gas | |
parent | 27bbbb582a6b18c391d6b35e5e4e89fe03ba1537 (diff) | |
download | gdb-3db6e6bd573a26b7abb9c7a30dbbcc97e7a5bace.zip gdb-3db6e6bd573a26b7abb9c7a30dbbcc97e7a5bace.tar.gz gdb-3db6e6bd573a26b7abb9c7a30dbbcc97e7a5bace.tar.bz2 |
* config/tc-hppa.c (pa_ip): Handle 'l' operand.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 2 | ||||
-rw-r--r-- | gas/config/tc-hppa.c | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index fd6d52a..f1aa1fd 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 'l' operand. + * config/tc-hppa.c (pa_ip): Handle 'g' operand. at Sep 18 12:13:28 1999 Jeffrey A Law (law@cygnus.com) diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index a19ca4d..d0e1dec 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -2690,6 +2690,14 @@ pa_ip (str) break; continue; + /* Handle ,l completer for new syntax branches. */ + case 'l': + if (*s == ',' && strcasecmp (s + 1, "l") == 0) + s += 2; + else + break; + continue; + /* Handle a 11 bit immediate at 31. */ case 'i': the_insn.field_selector = pa_chk_field_selector (&s); |