From d84ba819fe2f8bf49eddb7a3f42299a49d0206ea Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Thu, 19 Nov 2020 13:41:20 +0100 Subject: [PATCH] Fix bootstrap This fixes a typo in the TREE_CODE compare which should compare against TYPE_DECL, not TYPE_NAME. 2020-11-19 Richard Biener * fold-const.c (operand_compare::hash_operand): Fix typo. --- gcc/fold-const.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 397805d7779..820b08d26fd 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -3871,7 +3871,7 @@ operand_compare::hash_operand (const_tree t, inchash::hash &hstate, c = TYPE_NAME (TYPE_MAIN_VARIANT (c)); /* We compute mangled names only when free_lang_data is run. In that case we can hash precisely. */ - if (TREE_CODE (c) == TYPE_NAME + if (TREE_CODE (c) == TYPE_DECL && DECL_ASSEMBLER_NAME_SET_P (c)) hstate.add_object (IDENTIFIER_HASH_VALUE -- 2.30.2