From: Ian Lance Taylor Date: Fri, 18 Oct 1996 19:33:03 +0000 (+0000) Subject: * config/tc-mips.c (mips_ip): Accept an odd floating point X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=538034cfb5a933a3194c03781574a709afbd48c9;p=binutils-gdb.git * config/tc-mips.c (mips_ip): Accept an odd floating point register with l.s or s.s. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 9447c47c12e..5c69eac1e6e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,8 @@ Fri Oct 18 14:06:26 1996 Ian Lance Taylor + * config/tc-mips.c (mips_ip): Accept an odd floating point + register with l.s or s.s. + * config/obj-aout.c (obj_pseudo_table): Use obj_aout_type for .type pseudo-op. (obj_aout_type): New static function. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 7c7182e3870..a20c4c08a6a 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -5540,10 +5540,12 @@ mips_ip (str, ip) if ((regno & 1) != 0 && mips_isa < 3 - && ! (strcmp (str, "mtc1") == 0 || - strcmp (str, "mfc1") == 0 || - strcmp (str, "lwc1") == 0 || - strcmp (str, "swc1") == 0)) + && ! (strcmp (str, "mtc1") == 0 + || strcmp (str, "mfc1") == 0 + || strcmp (str, "lwc1") == 0 + || strcmp (str, "swc1") == 0 + || strcmp (str, "l.s") == 0 + || strcmp (str, "s.s") == 0)) as_warn ("Float register should be even, was %d", regno);