microblaze-tdep: Add ATTRIBUTE_PRINTF to microblaze_debug
I am getting this warning with clang: /home/emaisin/src/binutils-gdb/gdb/microblaze-tdep.c:94:28: error: format string is not a string literal [-Werror,-Wformat-nonliteral] vprintf_unfiltered (fmt, args); ^~~ Adding ATTRIBUTE_PRINTF to microblaze_debug gets rid of it. Strangely, gcc doesn't warn about non-literal format strings when calling vprintf (or a vprintf-style function, like vprintf_unfiltered). I filed this gcc bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82206 gdb/ChangeLog: * microblaze-tdep.c (microblaze_debug): Add ATTRIBUTE_PRINTF.
This commit is contained in:
parent
0a0bf5dc14
commit
ebe48ba085
@ -1,3 +1,7 @@
|
||||
2017-09-21 Simon Marchi <simon.marchi@ericsson.com>
|
||||
|
||||
* microblaze-tdep.c (microblaze_debug): Add ATTRIBUTE_PRINTF.
|
||||
|
||||
2017-09-21 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* configure.tgt (aarch64*-*-freebsd*): Add fbsd-tdep.o solib-svr4.o
|
||||
|
@ -82,7 +82,7 @@ static const char *microblaze_register_names[] =
|
||||
|
||||
static unsigned int microblaze_debug_flag = 0;
|
||||
|
||||
static void
|
||||
static void ATTRIBUTE_PRINTF (1, 2)
|
||||
microblaze_debug (const char *fmt, ...)
|
||||
{
|
||||
if (microblaze_debug_flag)
|
||||
|
Loading…
x
Reference in New Issue
Block a user