lto.c (gimple_canonical_types_compatible_p): Fix comment.

2014-01-09  Richard Biener  <rguenther@suse.de>

	* lto.c (gimple_canonical_types_compatible_p): Fix comment.

From-SVN: r206462
This commit is contained in:
Richard Biener 2014-01-09 12:34:39 +00:00 committed by Richard Biener
parent d05b99205d
commit 63124c486d
2 changed files with 5 additions and 1 deletions

View 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

View 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;