From: Jeff Law Date: Fri, 23 Aug 1996 06:56:44 +0000 (+0000) Subject: * v850-opc.c (v850_operansd): 3-bit immediate for bit insns X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3c72ab70359f1c5455a70c7f2989b13e80d0f1e7;p=binutils-gdb.git * v850-opc.c (v850_operansd): 3-bit immediate for bit insns is unsigned. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index f72326887e8..430bc692d32 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,6 +1,9 @@ start-sanitize-v850 Fri Aug 23 00:27:01 1996 Jeffrey A Law (law@cygnus.com) + * v850-opc.c (v850_operansd): 3-bit immediate for bit insns + is unsigned. + * v850-opc.c (v850_opcodes): Correct short store half (sst.h) and short store word (sst.w). diff --git a/opcodes/v850-opc.c b/opcodes/v850-opc.c index 78c769fdf8f..cf6f6cfb23a 100644 --- a/opcodes/v850-opc.c +++ b/opcodes/v850-opc.c @@ -62,7 +62,7 @@ const struct v850_operand v850_operands[] = { #define B3 (D22+1) /* The 3 bit immediate field in format 8 insn. */ - { 3, 11, 0, 0, V850_OPERAND_SIGNED }, + { 3, 11, 0, 0, 0 }, #define CCCC (B3+1) /* The 4 bit condition code in a setf instruction */