From c205a71bc05287d0b84852103052f9e9815a0446 Mon Sep 17 00:00:00 2001 From: rguenth Date: Thu, 9 Jan 2014 12:34:39 +0000 Subject: [PATCH] 2014-01-09 Richard Biener * lto.c (gimple_canonical_types_compatible_p): Fix comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206462 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/lto/ChangeLog | 4 ++++ gcc/lto/lto.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index 3830cdbf46c..152fa233e9e 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,5 +1,9 @@ 2014-01-09 Richard Biener + * lto.c (gimple_canonical_types_compatible_p): Fix comment. + +2014-01-09 Richard Biener + PR lto/45586 * lto.c (hash_canonical_type): Do not hash TREE_ADDRESSABLE, TYPE_ALIGN, TYPE_RESTRICT or TYPE_REF_CAN_ALIAS_ALL. diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index f78268344b7..c15f2128372 100644 --- a/gcc/lto/lto.c +++ b/gcc/lto/lto.c @@ -450,7 +450,7 @@ gimple_canonical_types_compatible_p (tree t1, tree t2) || TREE_CODE (t1) == NULLPTR_TYPE) return true; - /* Can't be the same type if they have different alignment, or mode. */ + /* Can't be the same type if they have different mode. */ if (TYPE_MODE (t1) != TYPE_MODE (t2)) return false; -- 2.11.4.GIT