Fix typo in type verification.

PR ipa/103786

gcc/ChangeLog:

	* tree.c (verify_type): Fix typo.
This commit is contained in:
Feng Xue 2021-12-21 09:48:16 +01:00 committed by Martin Liska
parent 1a7ce85709
commit 9ac0730c25

View file

@ -13530,7 +13530,7 @@ verify_type (const_tree t)
tree ct = TYPE_CANONICAL (t);
if (!ct)
;
else if (TYPE_CANONICAL (t) != ct)
else if (TYPE_CANONICAL (ct) != ct)
{
error ("%<TYPE_CANONICAL%> has different %<TYPE_CANONICAL%>");
debug_tree (ct);