Commit 10c344b4 by Richard Stallman

(struct rtx_def) [ONLY_INT_FIELDS]: Handle CODE_FIELD_BUG.

From-SVN: r2872
parent e3bd5911
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment