summaryrefslogtreecommitdiff
path: root/gcc/c-decl.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-03-06 16:18:41 -0800
committerYamaArashi <shadow962@live.com>2016-03-06 16:18:41 -0800
commitce590c846da59bd8d6fa3232689b776716c8c4af (patch)
tree6cee3a742d6d7bfd80f93b624ffe45a2d3ae3e29 /gcc/c-decl.c
parent60addc9c2c94b571f9ccfa4b4423aed3be886735 (diff)
remove unused modes
Diffstat (limited to 'gcc/c-decl.c')
-rwxr-xr-xgcc/c-decl.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index d431f59..c43774b 100755
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -147,17 +147,11 @@ tree intQI_type_node;
tree intHI_type_node;
tree intSI_type_node;
tree intDI_type_node;
-#if HOST_BITS_PER_WIDE_INT >= 64
-tree intTI_type_node;
-#endif
tree unsigned_intQI_type_node;
tree unsigned_intHI_type_node;
tree unsigned_intSI_type_node;
tree unsigned_intDI_type_node;
-#if HOST_BITS_PER_WIDE_INT >= 64
-tree unsigned_intTI_type_node;
-#endif
/* a VOID_TYPE node. */
@@ -3091,11 +3085,6 @@ init_decl_processing ()
intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
-#if HOST_BITS_PER_WIDE_INT >= 64
- intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode));
- pushdecl (build_decl (TYPE_DECL, NULL_TREE, intTI_type_node));
-#endif
-
unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
@@ -3108,11 +3097,6 @@ init_decl_processing ()
unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
-#if HOST_BITS_PER_WIDE_INT >= 64
- unsigned_intTI_type_node = make_unsigned_type (GET_MODE_BITSIZE (TImode));
- pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intTI_type_node));
-#endif
-
float_type_node = make_node (REAL_TYPE);
TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],