]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
sim/cris: Add ATTRIBUTE_PRINTF
authorTsukasa OI <research_trasio@irq.a4lg.com>
Thu, 6 Oct 2022 06:36:28 +0000 (06:36 +0000)
committerAndrew Burgess <aburgess@redhat.com>
Tue, 11 Oct 2022 14:18:14 +0000 (15:18 +0100)
Clang generates a warning if the format string of a printf-like function is
not a literal ("-Wformat-nonliteral").  On the default configuration, it
causes a build failure (unless "--disable-werror" is specified).

To avoid warnings on the printf-like wrapper, it requires proper
__attribute__((format)) and we have ATTRIBUTE_PRINTF macro for this reason.

This commit adds ATTRIBUTE_PRINTF to a printf-like function.

sim/cris/traps.c

index 8750c4d4e3c65b4d777616cf6367c1faf558eddc..7b0140f1c9013e018a421f3e69a5329081b01734 100644 (file)
@@ -1382,7 +1382,7 @@ make_first_thread (SIM_CPU *current_cpu)
 /* Handle unknown system calls.  Returns (if it does) the syscall
    return value.  */
 
-static USI
+static USI ATTRIBUTE_PRINTF (3, 4)
 cris_unknown_syscall (SIM_CPU *current_cpu, USI pc, char *s, ...)
 {
   SIM_DESC sd = CPU_STATE (current_cpu);