diff --git a/gas/ChangeLog b/gas/ChangeLog index 62489096b5..5d08734920 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2014-08-26 Maciej W. Rozycki + + * config/tc-mips.c (macro) : Remove duplicate code and + jump to... + : ... here. Assert that !microMIPS. + 2014-08-26 Jan-Benedict Glaw * config/tc-moxie.h (md_convert_frag): Silence warning. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 03f2b13899..59d863540f 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -12206,11 +12206,11 @@ macro (struct mips_cl_insn *ip, char *str) case M_SAA_AB: s = "saa"; - offbits = 0; - fmt = "t,(b)"; - goto ld_st; + goto saa_saad; case M_SAAD_AB: s = "saad"; + saa_saad: + gas_assert (!mips_opts.micromips); offbits = 0; fmt = "t,(b)"; goto ld_st;