diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2010-12-09 23:59:12 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2010-12-09 23:59:12 +0000 |
commit | da7bc628fe02d66f7dae9106ba161a09ab87b440 (patch) | |
tree | 936dc3ff37d216d988895dc37e6a6185825c633f /gas | |
parent | 738f4d98b409bad654486d6c1db037f2e320535a (diff) | |
download | gdb-da7bc628fe02d66f7dae9106ba161a09ab87b440.zip gdb-da7bc628fe02d66f7dae9106ba161a09ab87b440.tar.gz gdb-da7bc628fe02d66f7dae9106ba161a09ab87b440.tar.bz2 |
* config/tc-mips.c (mips_ip): Remove dead format specifier code.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index fae5743..996c53d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2010-12-09 Maciej W. Rozycki <macro@codesourcery.com> + * config/tc-mips.c (mips_ip): Remove dead format specifier code. + +2010-12-09 Maciej W. Rozycki <macro@codesourcery.com> + * config/tc-mips.c (file_ase_mips16): Adjust comment. (append_insn): Update file_ase_mips16. (mips_after_parse_args): Don't set file_ase_mips16 here. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 64a0717..dc61075 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -9517,7 +9517,6 @@ mips_ip (char *str, struct mips_cl_insn *ip) INSERT_OPERAND (RS, *ip, regno); break; case 'd': - case 'G': case 'K': case 'g': INSERT_OPERAND (RD, *ip, regno); @@ -9546,11 +9545,6 @@ mips_ip (char *str, struct mips_cl_insn *ip) is $0. This only matches $0, and is checked outside the switch. */ break; - case 'D': - /* Itbl operand; not yet implemented. FIXME ?? */ - break; - /* What about all other operands like 'i', which - can be specified in the opcode table? */ } lastregno = regno; continue; |