diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 06c2f52ed424..5154b1981eb5 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2016-12-20 Janne Blomqvist + + * trans-types.c (gfc_init_types): Don't redefine boolean type node. + 2016-12-19 Francois-Xavier Coudert * trans-decl.c (create_main_function): Remove unused elements to diff --git a/gcc/fortran/trans-types.c b/gcc/fortran/trans-types.c index 354308f8d9d6..e8dafa0d0af4 100644 --- a/gcc/fortran/trans-types.c +++ b/gcc/fortran/trans-types.c @@ -961,10 +961,6 @@ gfc_init_types (void) wi::mask (n, UNSIGNED, TYPE_PRECISION (size_type_node))); - boolean_type_node = gfc_get_logical_type (gfc_default_logical_kind); - boolean_true_node = build_int_cst (boolean_type_node, 1); - boolean_false_node = build_int_cst (boolean_type_node, 0); - /* ??? Shouldn't this be based on gfc_index_integer_kind or so? */ gfc_charlen_int_kind = 4; gfc_charlen_type_node = gfc_get_int_type (gfc_charlen_int_kind);