diff options
author | YamaArashi <shadow962@live.com> | 2016-02-14 19:35:48 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-14 19:35:48 -0800 |
commit | 0aebbdf6f7c204a0453892a0f946ce3821b6b6ca (patch) | |
tree | e4611e97fffed65c636464aa97ffd1fd35e6ae39 /gcc/rtl.h | |
parent | 62f1c8373a074a7ffb3d0f7458803bf0b07e626e (diff) |
remove macros for old compilers
Diffstat (limited to 'gcc/rtl.h')
-rwxr-xr-x | gcc/rtl.h | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -97,22 +97,10 @@ 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; -#endif /* The kind of value the expression has. */ -#ifdef ONLY_INT_FIELDS - int mode : 8; -#else enum machine_mode mode : 8; -#endif /* 1 in an INSN if it can alter flow of control within this function. Not yet used! */ unsigned int jump : 1; |