sim/ppc: Add ATTRIBUTE_PRINTF
authorTsukasa OI <research_trasio@irq.a4lg.com>
Thu, 6 Oct 2022 06:36:32 +0000 (06:36 +0000)
committerAndrew Burgess <aburgess@redhat.com>
Tue, 11 Oct 2022 14:18:14 +0000 (15:18 +0100)
commit3efe5b4d9e431f58a17e38d17419d6bcc3a4dd11
tree415bfb2eb2070630ee68f016cbeeedb0128371bd
parent7f9495b21380c0184dde72920bcca37be9d76b9d
sim/ppc: 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.

For the error function defined in sim_calls.c, the ATTRIBUTE_NORETURN
has been moved to the function declaration.
sim/ppc/misc.h
sim/ppc/sim_callbacks.h
sim/ppc/sim_calls.c