diff options
author | DJ Delorie <dj@redhat.com> | 2012-04-03 19:06:40 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2012-04-03 19:06:40 +0000 |
commit | e91a22cece444e61eab00e823c36fb9736e788ec (patch) | |
tree | 2b0afecbda8cc81d1de317754fd1f7c26d61c101 /gas/config | |
parent | 5a68afcf73212d0fec1268c362dbea9f66b272a1 (diff) | |
download | gdb-e91a22cece444e61eab00e823c36fb9736e788ec.zip gdb-e91a22cece444e61eab00e823c36fb9736e788ec.tar.gz gdb-e91a22cece444e61eab00e823c36fb9736e788ec.tar.bz2 |
* config/rx-parse.y: Make the .L optional for ADC and SBB.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/rx-parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/rx-parse.y b/gas/config/rx-parse.y index da4969a..f223dc7 100644 --- a/gas/config/rx-parse.y +++ b/gas/config/rx-parse.y @@ -816,7 +816,7 @@ op_subadd op_dp20_rm_l : REG ',' REG { id24 (1, 0x03 + (sub_op<<2), 0x00); F ($1, 16, 4); F ($3, 20, 4); } - | disp '[' REG ']' DOT_L ',' REG + | disp '[' REG ']' opt_l ',' REG { B4 (MEMEX, 0xa0, 0x00 + sub_op, 0x00); F ($3, 24, 4); F ($7, 28, 4); DSP ($1, 14, LSIZE); } ; |