aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1991-05-19 08:00:57 +0000
committerK. Richard Pixley <rich@cygnus>1991-05-19 08:00:57 +0000
commitbb50293f4438e9bc54438b41c1f80712022dc873 (patch)
tree7fb6f42ea463f5f57c2ca122b4bb34f9493b8fd7 /binutils
parent323a23f174ba279c26ebb38aa86f295882dd4518 (diff)
downloadfsf-binutils-gdb-bb50293f4438e9bc54438b41c1f80712022dc873.zip
fsf-binutils-gdb-bb50293f4438e9bc54438b41c1f80712022dc873.tar.gz
fsf-binutils-gdb-bb50293f4438e9bc54438b41c1f80712022dc873.tar.bz2
Updated to relect a gdb change in sparc-opcode.h.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/sparc-pinsn.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/binutils/sparc-pinsn.c b/binutils/sparc-pinsn.c
index 0da53ee..66a25ab 100644
--- a/binutils/sparc-pinsn.c
+++ b/binutils/sparc-pinsn.c
@@ -20,9 +20,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* $Id$
$Log$
- Revision 1.2 1991/04/18 21:14:21 steve
- Send the right # of args to an fprintf
+ Revision 1.3 1991/05/19 08:00:57 rich
+ Updated to relect a gdb change in sparc-opcode.h.
+ * Revision 1.2 1991/04/18 21:14:21 steve
+ * Send the right # of args to an fprintf
+ *
* Revision 1.1.1.1 1991/03/21 21:26:56 gumby
* Back from Intel with Steve
*
@@ -129,7 +132,7 @@ is_delayed_branch (insn)
const struct sparc_opcode *opcode = &sparc_opcodes[i];
if ((opcode->match & insn.code) == opcode->match
&& (opcode->lose & insn.code) == 0
- && (opcode->delayed))
+ && (opcode->flags&F_DELAYED))
return 1;
}
return 0;