From 1f5595a6f0101767c801ca5533fea5c803045c57 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 2 Sep 1997 22:31:04 +0000 Subject: [PATCH] Removed the V850_OPREAND_ADJUST_SHORT_MEMORY flag as it no longer used. --- include/opcode/ChangeLog | 4 ++++ include/opcode/v850.h | 12 ++++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 742168d44b..61003ee418 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +Tue Sep 2 15:32:32 1997 Nick Clifton + + * v850.h (V850_OPREAND_ADJUST_SHORT_MEMORY): Removed. + Tue Aug 26 12:21:52 1997 Ian Lance Taylor * i386.h (two_byte_segment_defaults): Correct base register 5 in diff --git a/include/opcode/v850.h b/include/opcode/v850.h index 58e7450468..a9b8590319 100644 --- a/include/opcode/v850.h +++ b/include/opcode/v850.h @@ -137,22 +137,18 @@ extern const struct v850_operand v850_operands[]; promoted operands on the mn10300?) */ #define V850_OPERAND_RELAX 0x40 -/* Whether this argument is a N-bit offset for a sst.{h,w}/sld.{h,w,hu} - instruction, and the addend needs to be shifted right one bit */ -#define V850_OPERAND_ADJUST_SHORT_MEMORY 0x80 - /* The register specified must not be r0 */ -#define V850_NOT_R0 0x100 +#define V850_NOT_R0 0x80 /* start-sanitize-v850e */ /* push/pop type instruction, V850E specific. */ -#define V850E_PUSH_POP 0x200 +#define V850E_PUSH_POP 0x100 /* 16 bit immediate follows instruction, V850E specific. */ -#define V850E_IMMEDIATE16 0x400 +#define V850E_IMMEDIATE16 0x200 /* 32 bit immediate follows instruction, V850E specific. */ -#define V850E_IMMEDIATE32 0x800 +#define V850E_IMMEDIATE32 0x400 /* end-sanitize-v850e */ #endif /* V850_H */