mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
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.
This commit is contained in:

committed by
Andrew Burgess

parent
735fab23d6
commit
7aaf9c03d1
@ -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))
|
||||
|
Reference in New Issue
Block a user