diff options
author | Jan Hubicka <jh@suse.cz> | 2019-06-24 23:13:12 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2019-06-24 21:13:12 +0000 |
commit | f4af4019dfb79f92adcf7cee4ef9e5f6ff428a37 (patch) | |
tree | 2344514a98c3312cba34b09afe63f6f1962da351 /gcc/lto | |
parent | cd57f4d81bdefeca6133dc52db8b7832a867686b (diff) | |
download | gcc-f4af4019dfb79f92adcf7cee4ef9e5f6ff428a37.zip gcc-f4af4019dfb79f92adcf7cee4ef9e5f6ff428a37.tar.gz gcc-f4af4019dfb79f92adcf7cee4ef9e5f6ff428a37.tar.bz2 |
ipa-utils.h (type_with_linkage_p): Verify that type is CXX_ODR_P.
* ipa-utils.h (type_with_linkage_p): Verify that type is
CXX_ODR_P.
(odr_type_p): Remove extra return.
* lto-streamer-out.c (hash_tree): Hash TYPE_CXX_ODR_P;
hash STRING_FLAG only for arrays and integers.
* tree-stremaer-in.c (unpack_ts_type_common_value_fields):
Update analogously.
* tree-streamer-out.c (pack_ts_type_common_value_fields):
Likewise.
* print-tree.c (print_node): Print cxx-odr-p
and string-flag.
* tree.c (need_assembler_name_p): Also check that type
is CXX_ODR_TYPE_P
(verify_type_variant): Update verification of SRING_FLAG;
also check CXX_ODR_P.
* tree.h (ARRAY_OR_INTEGER_TYPE_CHECK): New macro.
(TYPE_STRING_FLAG): Use it.
(TYPE_CXX_ODR_P): New macro.
* lto-common.c (compare_tree_sccs_1): Compare CXX_ODR_P;
compare STRING_FLAG only for arrays and integers.
* gcc-interface/decl.c (gnat_to_gnu_entity): Check that
type is array or integer prior checking string flag.
* gcc-interface/gigi.h (gnat_signed_type_for,
maybe_character_value): Likewise.
* c-common.c (braced_lists_to_strings): Check that
type is array or integer prior checking string flag.
* lex.c (cxx_make_type): Set TYPE_CXX_ODR_P.
* dwarf2out.c (gen_array_type_die): First check that type
is an array and then test string flag.
* trans-expr.c (gfc_conv_substring): Check that
type is array or integer prior checking string flag.
(gfc_conv_string_parameter): Likewise.
* trans-openmp.c (gfc_omp_scalar_p): Likewise.
* trans.c (gfc_build_array_ref): Likewise.
From-SVN: r272628
Diffstat (limited to 'gcc/lto')
-rw-r--r-- | gcc/lto/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/lto/lto-common.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index 71a849b2..95b98ab 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,8 @@ +2019-06-24 Jan Hubicka <jh@suse.cz> + + * lto-common.c (compare_tree_sccs_1): Compare CXX_ODR_P; + compare STRING_FLAG only for arrays and integers. + 2019-06-05 Martin Sebor <msebor@redhat.com> * lto-common.c (lto_file_finalize): Adjust quoting and hyphenation. diff --git a/gcc/lto/lto-common.c b/gcc/lto/lto-common.c index 9d2f9c5..0d38ee6 100644 --- a/gcc/lto/lto-common.c +++ b/gcc/lto/lto-common.c @@ -1124,15 +1124,17 @@ compare_tree_sccs_1 (tree t1, tree t2, tree **map) if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON)) { compare_values (TYPE_MODE); - compare_values (TYPE_STRING_FLAG); compare_values (TYPE_NEEDS_CONSTRUCTING); if (RECORD_OR_UNION_TYPE_P (t1)) { compare_values (TYPE_TRANSPARENT_AGGR); compare_values (TYPE_FINAL_P); + compare_values (TYPE_CXX_ODR_P); } else if (code == ARRAY_TYPE) compare_values (TYPE_NONALIASED_COMPONENT); + if (code == ARRAY_TYPE || code == INTEGER_TYPE) + compare_values (TYPE_STRING_FLAG); if (AGGREGATE_TYPE_P (t1)) compare_values (TYPE_TYPELESS_STORAGE); compare_values (TYPE_EMPTY_P); |