forked from Imagelibrary/binutils-gdb
sim/erc32: 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 the printf-like functions.
This commit is contained in:
committed by
Andrew Burgess
parent
a26c7ec211
commit
682389d557
@@ -156,7 +156,7 @@ run_sim(struct pstate *sregs, uint64_t icount, int dis)
|
||||
return TIME_OUT;
|
||||
}
|
||||
|
||||
static int
|
||||
static int ATTRIBUTE_PRINTF (3, 4)
|
||||
fprintf_styled (void *stream, enum disassembler_style style,
|
||||
const char *fmt, ...)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user