]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Add GTY skip to active_iterated_stmt
authorRichard Biener <rguenther@suse.de>
Thu, 6 Nov 2025 14:48:01 +0000 (15:48 +0100)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 6 Nov 2025 14:57:24 +0000 (15:57 +0100)
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

index a6e40c7497f4f1d79f25c8afe4cd1fd39110c623..33a6a78f00db2af21a82bdfccd158eaf25edd3e1 100644 (file)
@@ -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
 };