From: Feng Xue Date: Tue, 21 Dec 2021 08:48:16 +0000 (+0100) Subject: Fix typo in type verification. X-Git-Tag: basepoints/gcc-13~2209 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ac0730c25b357b5fc75e18677cec27a546c1b64;p=thirdparty%2Fgcc.git Fix typo in type verification. PR ipa/103786 gcc/ChangeLog: * tree.c (verify_type): Fix typo. --- diff --git a/gcc/tree.c b/gcc/tree.c index 72cceda568f5..0741e3b01af6 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -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 ("% has different %"); debug_tree (ct);