* config/tc-mips.c (append_insn): Correct INSN_SYNC test. From
Ralf Baechle <ralf@uni-koblenz.de>.
This commit is contained in:
parent
24eab124bd
commit
f173e82ec8
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
1999-08-03 Ian Lance Taylor <ian@zembu.com>
|
||||
|
||||
* config/tc-mips.c (append_insn): Correct INSN_SYNC test. From
|
||||
Ralf Baechle <ralf@uni-koblenz.de>.
|
||||
|
||||
1999-08-03 Etienne Lorrain <etienne.lorrain@ibm.net>
|
||||
|
||||
* config/tc-i386.c (f16_3): New. Fixes 16 bit 3 byte nop.
|
||||
|
|
|
@ -2097,7 +2097,7 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
|
|||
|| (mips_opts.mips16 && prev_insn_fixp)
|
||||
/* If the previous instruction is a sync, sync.l, or
|
||||
sync.p, we can not swap. */
|
||||
|| (prev_pinfo && INSN_SYNC))
|
||||
|| (prev_pinfo & INSN_SYNC))
|
||||
{
|
||||
/* We could do even better for unconditional branches to
|
||||
portions of this object file; we could pick up the
|
||||
|
|
Loading…
Reference in a new issue