]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
lto.c (gimple_canonical_types_compatible_p): Fix comment.
authorRichard Biener <rguenther@suse.de>
Thu, 9 Jan 2014 12:34:39 +0000 (12:34 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 9 Jan 2014 12:34:39 +0000 (12:34 +0000)
2014-01-09  Richard Biener  <rguenther@suse.de>

* lto.c (gimple_canonical_types_compatible_p): Fix comment.

From-SVN: r206462

gcc/lto/ChangeLog
gcc/lto/lto.c

index 3830cdbf46c303ed744c34ca809b5755443b2ddb..152fa233e9e7b188a212fe3d23f2bd14cf327282 100644 (file)
@@ -1,3 +1,7 @@
+2014-01-09  Richard Biener  <rguenther@suse.de>
+
+       * lto.c (gimple_canonical_types_compatible_p): Fix comment.
+
 2014-01-09  Richard Biener  <rguenther@suse.de>
 
        PR lto/45586
index f78268344b7731b79d0d2e64be784b2821c4c135..c15f21283721310ae20de33460d82f2b61aa9b76 100644 (file)
@@ -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;