From bd78c6d5b2c7e6e2c6e99032454bc6de8c39d238 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Tue, 6 Nov 2018 13:46:46 +0100 Subject: ipa-pure-const.c (check_decl): Do not test TYPE_NEEDS_CONSTRUCTING. * ipa-pure-const.c (check_decl): Do not test TYPE_NEEDS_CONSTRUCTING. * lto-streamer-out.c (hash_tree): Do not hash TYPE_NEEDS_CONSTRUCTING. * tree-streamer-in.c (unpack_ts_type_common_value_fields): Do not stream TYPE_NEEDS_CONSTRUCTING. * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise. * tree.c (free_lang_data_in_type): Clear TYPE_NEEDS_CONSTRUCTING. From-SVN: r265841 --- gcc/tree-streamer-in.c | 1 - 1 file changed, 1 deletion(-) (limited to 'gcc/tree-streamer-in.c') diff --git a/gcc/tree-streamer-in.c b/gcc/tree-streamer-in.c index bd98ed0..f1e8244 100644 --- a/gcc/tree-streamer-in.c +++ b/gcc/tree-streamer-in.c @@ -367,7 +367,6 @@ unpack_ts_type_common_value_fields (struct bitpack_d *bp, tree expr) TYPE_STRING_FLAG (expr) = (unsigned) bp_unpack_value (bp, 1); /* TYPE_NO_FORCE_BLK is private to stor-layout and need no streaming. */ - TYPE_NEEDS_CONSTRUCTING (expr) = (unsigned) bp_unpack_value (bp, 1); TYPE_PACKED (expr) = (unsigned) bp_unpack_value (bp, 1); TYPE_RESTRICT (expr) = (unsigned) bp_unpack_value (bp, 1); TYPE_USER_ALIGN (expr) = (unsigned) bp_unpack_value (bp, 1); -- cgit v1.1