From 63124c486dcd729695fc6ee33fc0ebe74379f589 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Thu, 9 Jan 2014 12:34:39 +0000 Subject: [PATCH] lto.c (gimple_canonical_types_compatible_p): Fix comment. 2014-01-09 Richard Biener * lto.c (gimple_canonical_types_compatible_p): Fix comment. From-SVN: r206462 --- 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,3 +1,7 @@ +2014-01-09 Richard Biener + + * lto.c (gimple_canonical_types_compatible_p): Fix comment. + 2014-01-09 Richard Biener PR lto/45586 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;