From: Mike Frysinger Date: Thu, 9 Sep 2021 01:49:00 +0000 (-0400) Subject: sim: ppc: enable -Wmissing-declarations & -Wmissing-prototypes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0c320e1bdcb45e0d46f69a1567a06be326529c34;p=binutils-gdb.git sim: ppc: enable -Wmissing-declarations & -Wmissing-prototypes This aligns with common code which already uses this flag. We have to add another local prototype to fix the failure, and add another local decl for the SIM_DESC type. Unwinding these will require a lot more work & conversions in the process, so going with the decl for now unblocks the warning unification. --- diff --git a/sim/ppc/configure b/sim/ppc/configure index 2cb7ccdb86a..1e42a8adac4 100755 --- a/sim/ppc/configure +++ b/sim/ppc/configure @@ -3483,8 +3483,8 @@ sim_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wno-error=maybe-uninitialized --Wno-missing-declarations --Wno-missing-prototypes +-Wmissing-declarations +-Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wno-pointer-sign -Wold-style-declaration -Wold-style-definition diff --git a/sim/ppc/configure.ac b/sim/ppc/configure.ac index 0fa7f4ee221..82250818eab 100644 --- a/sim/ppc/configure.ac +++ b/sim/ppc/configure.ac @@ -424,8 +424,8 @@ sim_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wno-error=maybe-uninitialized --Wno-missing-declarations --Wno-missing-prototypes +-Wmissing-declarations +-Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wno-pointer-sign -Wold-style-declaration -Wold-style-definition diff --git a/sim/ppc/sim_callbacks.h b/sim/ppc/sim_callbacks.h index 2b5f2a24c7b..08ccd258569 100644 --- a/sim/ppc/sim_callbacks.h +++ b/sim/ppc/sim_callbacks.h @@ -103,6 +103,13 @@ sim_io_read_stdin void sim_io_flush_stdoutput (void); +/* TODO: Untangle this SIM_DESC forward decl someday. */ +typedef struct sim_state *SIM_DESC; +void sim_io_error (SIM_DESC sd, + const char *fmt, + ...) + ATTRIBUTE_PRINTF (2, 3) + ATTRIBUTE_NORETURN; /* Simulator instance. */ extern psim *simulator;