summaryrefslogtreecommitdiff
path: root/gcc/lto
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2015-06-14 23:40:12 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2015-06-14 23:40:12 +0000
commitcb274227e747546384447e825505da925199a0a6 (patch)
treed9e7ff98e955e6a6f8584133fce22117a77a8df6 /gcc/lto
parent03acb8618fa6dd16a19776a6758f22e861a6987e (diff)
downloadgcc-cb274227e747546384447e825505da925199a0a6.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@224471 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto')
-rw-r--r--gcc/lto/ChangeLog5
-rw-r--r--gcc/lto/lto.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog
index 9665bf096b2..af12a06a3fd 100644
--- a/gcc/lto/ChangeLog
+++ b/gcc/lto/ChangeLog
@@ -1,3 +1,8 @@
+2015-06-14 Jan Hubicka <hubicka@ucw.cz>
+
+ PR ipa/66181
+ * lto.c (compare_tree_sccs_1): Do not compare TYPE_NO_FORCE_BLK.
+
2015-06-12 DJ Delorie <dj@redhat.com>
* lto-lang.c (lto_type_for_size): Include intN types.
diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c
index b9b11106ac3..2001bf3e486 100644
--- a/gcc/lto/lto.c
+++ b/gcc/lto/lto.c
@@ -1159,7 +1159,6 @@ compare_tree_sccs_1 (tree t1, tree t2, tree **map)
{
compare_values (TYPE_MODE);
compare_values (TYPE_STRING_FLAG);
- compare_values (TYPE_NO_FORCE_BLK);
compare_values (TYPE_NEEDS_CONSTRUCTING);
if (RECORD_OR_UNION_TYPE_P (t1))
{