diff options
author | Tsukasa OI <research_trasio@irq.a4lg.com> | 2022-10-06 06:36:27 +0000 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2022-10-11 15:18:14 +0100 |
commit | 7aaf9c03d143802302c49ed70d05766c9cf3cb5b (patch) | |
tree | b127ba041c62ff7fc0a9b37792f1d8a048b7fa2e /sim | |
parent | 735fab23d68d66678eaa19e5751c49091c3bd299 (diff) | |
download | gdb-7aaf9c03d143802302c49ed70d05766c9cf3cb5b.zip gdb-7aaf9c03d143802302c49ed70d05766c9cf3cb5b.tar.gz gdb-7aaf9c03d143802302c49ed70d05766c9cf3cb5b.tar.bz2 |
sim/common: Add ATTRIBUTE_PRINTF
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.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/common/sim-cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sim/common/sim-cpu.h b/sim/common/sim-cpu.h index d8b2b9c..9e09a55 100644 --- a/sim/common/sim-cpu.h +++ b/sim/common/sim-cpu.h @@ -137,7 +137,8 @@ extern sim_cpu *sim_cpu_lookup (SIM_DESC, const char *); /* Return prefix to use in cpu specific messages. */ extern const char *sim_cpu_msg_prefix (sim_cpu *); /* Cover fn to sim_io_eprintf. */ -extern void sim_io_eprintf_cpu (sim_cpu *, const char *, ...); +extern void sim_io_eprintf_cpu (sim_cpu *, const char *, ...) + ATTRIBUTE_PRINTF (2, 3); /* Get/set a pc value. */ #define CPU_PC_GET(cpu) ((* CPU_PC_FETCH (cpu)) (cpu)) |