aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-streamer-in.c
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@ucw.cz>2015-06-15 01:40:12 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2015-06-14 23:40:12 +0000
commit351d90f4c41fa73dcf93dd90a5d23c8d0b8d1b35 (patch)
treed9e7ff98e955e6a6f8584133fce22117a77a8df6 /gcc/tree-streamer-in.c
parent3beaff21f346c7f34bf45f7b56f2c1c880a91e31 (diff)
downloadgcc-351d90f4c41fa73dcf93dd90a5d23c8d0b8d1b35.zip
gcc-351d90f4c41fa73dcf93dd90a5d23c8d0b8d1b35.tar.gz
gcc-351d90f4c41fa73dcf93dd90a5d23c8d0b8d1b35.tar.bz2
re PR ipa/66181 (/usr/include/bits/types.h:134:16: ICE: verify_type failed)
PR ipa/66181 * lto.c (compare_tree_sccs_1): Do not compare TYPE_NO_FORCE_BLK. * lto-streamer-out.c (hash_tree): Do not hash TYPE_NO_FORCE_BLK. * tree-streamer-out.c (pack_ts_type_common_value_fields): Do not stream TYPE_NO_FORCE_BLK. * tree-streamer-in.c (unpack_ts_type_common_value_fields): Likewise. From-SVN: r224471
Diffstat (limited to 'gcc/tree-streamer-in.c')
-rw-r--r--gcc/tree-streamer-in.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-streamer-in.c b/gcc/tree-streamer-in.c
index 32bd5a7..9b2d143 100644
--- a/gcc/tree-streamer-in.c
+++ b/gcc/tree-streamer-in.c
@@ -370,7 +370,8 @@ unpack_ts_type_common_value_fields (struct bitpack_d *bp, tree expr)
mode = bp_unpack_machine_mode (bp);
SET_TYPE_MODE (expr, mode);
TYPE_STRING_FLAG (expr) = (unsigned) bp_unpack_value (bp, 1);
- TYPE_NO_FORCE_BLK (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);
if (RECORD_OR_UNION_TYPE_P (expr))
{