mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-05 08:14:19 +08:00
* config/tc-mips.c (mips_ip): Don't test pinfo flags if INSN_MACRO.
This commit is contained in:
parent
3f89726318
commit
b2cf4548a1
@ -1,3 +1,7 @@
|
||||
Wed Jan 14 15:02:19 1998 Doug Evans <devans@seba.cygnus.com>
|
||||
|
||||
* config/tc-mips.c (mips_ip): Don't test pinfo flags if INSN_MACRO.
|
||||
|
||||
Mon Jan 12 13:04:57 1998 Doug Evans <devans@seba.cygnus.com>
|
||||
|
||||
* cgen.c: #include setjmp.h. Clean up pass over `struct foo' usage.
|
||||
|
@ -6820,12 +6820,15 @@ mips_ip (str, ip)
|
||||
else
|
||||
ok = false;
|
||||
|
||||
if (mips_4650 && (insn->pinfo & FP_D) != 0)
|
||||
ok = false;
|
||||
/* start-sanitize-r5900 */
|
||||
if (mips_5900 && (insn->pinfo & FP_D) != 0)
|
||||
ok = false;
|
||||
/* end-sanitize-r5900 */
|
||||
if (insn->pinfo != INSN_MACRO)
|
||||
{
|
||||
if (mips_4650 && (insn->pinfo & FP_D) != 0)
|
||||
ok = false;
|
||||
/* start-sanitize-r5900 */
|
||||
if (mips_5900 && (insn->pinfo & FP_D) != 0)
|
||||
ok = false;
|
||||
/* end-sanitize-r5900 */
|
||||
}
|
||||
|
||||
if (! ok)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user