[clang] [Sema] -Wformat: warn about C23 %b %B when not in C23 language mode (PR #126694)

Daniel Rodríguez Troitiño via cfe-commits cfe-commits at lists.llvm.org
Tue Feb 11 07:48:36 PST 2025


================
@@ -0,0 +1,41 @@
+// RUN: %clang_cc1 -std=c17 -DPRE_C23 -fsyntax-only -verify -isystem %S/Inputs %s
+// RUN: %clang_cc1 -std=c23 -DPOST_C23 -fsyntax-only -verify -isystem %S/Inputs %s
+
+#include <stdarg.h>
+#include <stddef.h>
+
+int printf(const char *restrict, ...);
+
+#if PRE_C23
----------------
drodriguez wrote:

I did not know about those options. I will try to change the test to work like that.

Not sure what you mean a "compat warning". Do you mean that instead of saying "invalid conversion specifier 'b'" it should say something like "'b' is not valid before C23" or similar wording?

https://github.com/llvm/llvm-project/pull/126694


More information about the cfe-commits mailing list