From 9ac0730c25b357b5fc75e18677cec27a546c1b64 Mon Sep 17 00:00:00 2001 From: Feng Xue Date: Tue, 21 Dec 2021 09:48:16 +0100 Subject: [PATCH] Fix typo in type verification. PR ipa/103786 gcc/ChangeLog: * tree.c (verify_type): Fix typo. --- gcc/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree.c b/gcc/tree.c index 72cceda..0741e3b 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); -- 2.7.4