* [PATCH] gcc-plugins: Remove TODO_verify_il for GCC >= 16
@ 2025-09-20 23:45 Kees Cook
2025-09-21 16:34 ` csfore
0 siblings, 1 reply; 2+ messages in thread
From: Kees Cook @ 2025-09-20 23:45 UTC (permalink / raw)
To: linux-hardening, Christopher Fore; +Cc: Kees Cook, linux-kernel
GCC now runs TODO_verify_il automatically[1], so it is no longer exposed to
plugins. Only use the flag on GCC < 16.
Suggested-by: Christopher Fore <csfore@posteo.net>
Link: https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=9739ae9384dd7cd3bb1c7683d6b80b7a9116eaf8
Signed-off-by: Kees Cook <kees@kernel.org>
---
How about like this, so it'll still work on GCC <16?
Cc: <linux-hardening@vger.kernel.org>
---
scripts/gcc-plugins/gcc-common.h | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/scripts/gcc-plugins/gcc-common.h b/scripts/gcc-plugins/gcc-common.h
index 6cb6d1051815..8f1b3500f8e2 100644
--- a/scripts/gcc-plugins/gcc-common.h
+++ b/scripts/gcc-plugins/gcc-common.h
@@ -173,10 +173,17 @@ static inline opt_pass *get_pass_for_id(int id)
return g->get_passes()->get_pass_for_id(id);
}
+#if BUILDING_GCC_VERSION < 16000
#define TODO_verify_ssa TODO_verify_il
#define TODO_verify_flow TODO_verify_il
#define TODO_verify_stmts TODO_verify_il
#define TODO_verify_rtl_sharing TODO_verify_il
+#else
+#define TODO_verify_ssa 0
+#define TODO_verify_flow 0
+#define TODO_verify_stmts 0
+#define TODO_verify_rtl_sharing 0
+#endif
#define INSN_DELETED_P(insn) (insn)->deleted()
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] gcc-plugins: Remove TODO_verify_il for GCC >= 16
2025-09-20 23:45 [PATCH] gcc-plugins: Remove TODO_verify_il for GCC >= 16 Kees Cook
@ 2025-09-21 16:34 ` csfore
0 siblings, 0 replies; 2+ messages in thread
From: csfore @ 2025-09-21 16:34 UTC (permalink / raw)
To: Kees Cook; +Cc: linux-hardening
On 2025-09-20 19:45, Kees Cook wrote:
> GCC now runs TODO_verify_il automatically[1], so it is no longer
> exposed to
> plugins. Only use the flag on GCC < 16.
>
> Suggested-by: Christopher Fore <csfore@posteo.net>
> Link:
> https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=9739ae9384dd7cd3bb1c7683d6b80b7a9116eaf8
> Signed-off-by: Kees Cook <kees@kernel.org>
> ---
> How about like this, so it'll still work on GCC <16?
Sounds good to me!
-Christopher
> [...]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-09-21 16:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-20 23:45 [PATCH] gcc-plugins: Remove TODO_verify_il for GCC >= 16 Kees Cook
2025-09-21 16:34 ` csfore
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.