Fix typo in type verification.
PR ipa/103786 gcc/ChangeLog: * tree.c (verify_type): Fix typo.
This commit is contained in:
parent
1a7ce85709
commit
9ac0730c25
1 changed files with 1 additions and 1 deletions
|
@ -13530,7 +13530,7 @@ verify_type (const_tree t)
|
||||||
tree ct = TYPE_CANONICAL (t);
|
tree ct = TYPE_CANONICAL (t);
|
||||||
if (!ct)
|
if (!ct)
|
||||||
;
|
;
|
||||||
else if (TYPE_CANONICAL (t) != ct)
|
else if (TYPE_CANONICAL (ct) != ct)
|
||||||
{
|
{
|
||||||
error ("%<TYPE_CANONICAL%> has different %<TYPE_CANONICAL%>");
|
error ("%<TYPE_CANONICAL%> has different %<TYPE_CANONICAL%>");
|
||||||
debug_tree (ct);
|
debug_tree (ct);
|
||||||
|
|
Loading…
Add table
Reference in a new issue