aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index a73698caa25..c817ac7f8c9 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -9179,8 +9179,7 @@ get_narrower (tree op, int *unsignedp_ptr)
= tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op, 1)));
int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
|| TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
- ttype *type
- = TTYPE (lang_hooks.types.type_for_size (innerprec, unsignedp));
+ ttype *type = lang_hooks.types.type_for_size (innerprec, unsignedp);
/* We can get this structure field in a narrower type that fits it,
but the resulting extension to its nominal type (a fullword type)
@@ -10893,8 +10892,7 @@ build_common_builtin_nodes (void)
local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
"__builtin_eh_pointer", ecf_flags);
- tmp = TTYPE (lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (),
- 0));
+ tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
"__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
@@ -10924,7 +10922,7 @@ build_common_builtin_nodes (void)
if (targetm.libfunc_gnu_prefix)
prefix = "__gnu_";
- type = TTYPE (lang_hooks.types.type_for_mode ((machine_mode) mode, 0));
+ type = lang_hooks.types.type_for_mode ((machine_mode) mode, 0);
if (type == NULL)
continue;
inner_type = TREE_TYPE (type);