From: Richard Stallman Date: Sun, 13 Dec 1992 01:44:12 +0000 (+0000) Subject: (struct rtx_def) [ONLY_INT_FIELDS]: Handle CODE_FIELD_BUG. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=10c344b44c487be7a3146115ef8ec8cb72b5747f;p=gcc.git (struct rtx_def) [ONLY_INT_FIELDS]: Handle CODE_FIELD_BUG. From-SVN: r2872 --- diff --git a/gcc/rtl.h b/gcc/rtl.h index dcc359c7b80..8ee49f1b898 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -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;