(struct rtx_def) [ONLY_INT_FIELDS]: Handle CODE_FIELD_BUG.

From-SVN: r2872
This commit is contained in:
Richard Stallman 1992-12-13 01:44:12 +00:00
parent e3bd591110
commit 10c344b44c
1 changed files with 4 additions and 0 deletions

View File

@ -68,7 +68,11 @@ typedef union rtunion_def
typedef struct rtx_def
{
#ifdef ONLY_INT_FIELDS
#ifdef CODE_FIELD_BUG
unsigned int code : 16;
#else
unsigned short code;
#endif
#else
/* The kind of expression this is. */
enum rtx_code code : 16;