From 6c56609915f2eb3350a167dfc3e6bb4df3becb42 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Thu, 6 Nov 2025 15:48:01 +0100 Subject: [PATCH] Add GTY skip to active_iterated_stmt The following should fix a disable-checking build which seems to confuse gengtype. * tree-core.h (tree_ssa_name::active_iterated_stmt): Mark GTY((skip(""))). --- gcc/tree-core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree-core.h b/gcc/tree-core.h index a6e40c7497f..33a6a78f00d 100644 --- a/gcc/tree-core.h +++ b/gcc/tree-core.h @@ -1718,7 +1718,7 @@ struct GTY(()) tree_ssa_name { /* Immediate uses list for this SSA_NAME. */ struct ssa_use_operand_t imm_uses; #if defined ENABLE_GIMPLE_CHECKING - gimple *active_iterated_stmt; + gimple *GTY((skip(""))) active_iterated_stmt; unsigned fast_iteration_depth; #endif }; -- 2.47.3