From: Richard Biener Date: Thu, 6 Nov 2025 14:48:01 +0000 (+0100) Subject: Add GTY skip to active_iterated_stmt X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c56609915f2eb3350a167dfc3e6bb4df3becb42;p=thirdparty%2Fgcc.git 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(""))). --- 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 };