summaryrefslogtreecommitdiff
path: root/gcc/varasm.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-14 19:35:48 -0800
committerYamaArashi <shadow962@live.com>2016-02-14 19:35:48 -0800
commit0aebbdf6f7c204a0453892a0f946ce3821b6b6ca (patch)
treee4611e97fffed65c636464aa97ffd1fd35e6ae39 /gcc/varasm.c
parent62f1c8373a074a7ffb3d0f7458803bf0b07e626e (diff)
remove macros for old compilers
Diffstat (limited to 'gcc/varasm.c')
-rwxr-xr-xgcc/varasm.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index e1f83bc..e3f9b4a 100755
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -3079,13 +3079,8 @@ enum kind { RTX_DOUBLE, RTX_INT };
struct rtx_const
{
-#ifdef ONLY_INT_FIELDS
- unsigned int kind : 16;
- unsigned int mode : 16;
-#else
enum kind kind : 16;
enum machine_mode mode : 16;
-#endif
union {
union real_extract du;
struct addr_const addr;