From 10c344b44c487be7a3146115ef8ec8cb72b5747f Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sun, 13 Dec 1992 01:44:12 +0000 Subject: (struct rtx_def) [ONLY_INT_FIELDS]: Handle CODE_FIELD_BUG. From-SVN: r2872 --- gcc/rtl.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gcc') diff --git a/gcc/rtl.h b/gcc/rtl.h index dcc359c..8ee49f1 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; -- cgit v1.1