mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 15:15:42 +00:00
sim/m32c: 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
682389d557
commit
fe8732f939
@@ -89,7 +89,7 @@ compare_symbols (const void *ap, const void *bp)
|
||||
|
||||
static char opbuf[1000];
|
||||
|
||||
static int
|
||||
static int ATTRIBUTE_PRINTF (2, 3)
|
||||
op_printf (char *buf, char *fmt, ...)
|
||||
{
|
||||
int ret;
|
||||
@@ -101,7 +101,7 @@ op_printf (char *buf, char *fmt, ...)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int
|
||||
static int ATTRIBUTE_PRINTF (3, 4)
|
||||
op_styled_printf (char *buf, enum disassembler_style style, char *fmt, ...)
|
||||
{
|
||||
int ret;
|
||||
|
||||
Reference in New Issue
Block a user