diff options
author | Jeff Law <law@redhat.com> | 1999-08-28 06:28:21 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-08-28 06:28:21 +0000 |
commit | 9ecc05f0de63bb07a9f37f464e2e53e2de338d23 (patch) | |
tree | 19df658de38698d9027ae6fd6c3b52eb6ea839d6 /gas | |
parent | 1c1432026fa1235ed25c649631c6543ae628a2a2 (diff) | |
download | gdb-9ecc05f0de63bb07a9f37f464e2e53e2de338d23.zip gdb-9ecc05f0de63bb07a9f37f464e2e53e2de338d23.tar.gz gdb-9ecc05f0de63bb07a9f37f464e2e53e2de338d23.tar.bz2 |
* config/tc-hppa.c (pa_ip): Add case for 'I'.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-hppa.c | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 9b2a8ea..0386fd2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +Sat Aug 28 00:26:26 1999 Jerry Quinn <jquinn@nortelnetworks.com> + + * config/tc-hppa.c (pa_ip): Add case for 'I'. + 1999-08-27 Jim Wilson <wilson@cygnus.com> * dwarf2dbg.c (MAX_SPECIAL_ADDR_DELTA): Correct typo in comment. diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index 99914db..39dee7c 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -2546,6 +2546,12 @@ pa_ip (str) the_insn.fpof2 = flag; INSERT_FIELD_AND_CONTINUE (opcode, flag, 13); + /* Handle a source FP operand format completer at 20. */ + case 'I': + flag = pa_parse_fp_format (&s); + the_insn.fpof1 = flag; + INSERT_FIELD_AND_CONTINUE (opcode, flag, 11); + /* Handle L/R register halves like 't'. */ case 'v': { |