From b4af986f84dfb00526f760a5653c253886360989 Mon Sep 17 00:00:00 2001 From: ian Date: Tue, 3 Aug 1999 15:22:37 +0000 Subject: [PATCH] * config/tc-mips.c (append_insn): Correct INSN_SYNC test. From Ralf Baechle . --- gas/ChangeLog | 5 +++++ gas/config/tc-mips.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 385d7abf55..77c0665874 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +1999-08-03 Ian Lance Taylor + + * config/tc-mips.c (append_insn): Correct INSN_SYNC test. From + Ralf Baechle . + 1999-08-03 Etienne Lorrain * config/tc-i386.c (f16_3): New. Fixes 16 bit 3 byte nop. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index c9b063291f..3df6adf1c4 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -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 -- 2.11.0