* v850.h (v850_operands): Add flags field.

(OPERAND_REG, OPERAND_NUM): Defined.
This commit is contained in:
J.T. Conklin 1996-08-22 00:46:17 +00:00
parent 6bc33c7fa5
commit dd528affb3
2 changed files with 12 additions and 0 deletions

View File

@ -1,4 +1,9 @@
start-sanitize-v850
Wed Aug 21 17:45:10 1996 J.T. Conklin <jtc@rtl.cygnus.com>
* v850.h (v850_operands): Add flags field.
(OPERAND_REG, OPERAND_NUM): Defined.
Tue Aug 20 14:52:02 1996 J.T. Conklin <jtc@rtl.cygnus.com>
* v850.h: New file.

View File

@ -60,6 +60,8 @@ struct v850_operand
/* How far the operand is left shifted in the instruction. */
int shift;
int flags;
};
/* Elements in the table are retrieved by indexing with values from
@ -67,5 +69,10 @@ struct v850_operand
extern const struct v850_operand v850_operands[];
/* Values defined for the flags field of a struct v850_operand. */
#define OPERAND_NUM 1 /* number or symbol */
#define OPERAND_REG 2 /* register */
#endif /* V850_H */