Am 13.07.2012 17:37, schrieb Peter Maydell: > On 13 July 2012 16:31, Kevin Wolf <kw...@redhat.com> wrote: >> +#ifdef CONFIG_VALGRIND_H >> +/* Work around an unused variable in the valgrind.h macro... */ >> +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" >> +static inline void valgrind_stack_deregister(CoroutineUContext *co) >> +{ >> + VALGRIND_STACK_DEREGISTER(co->valgrind_stack_id); >> +} >> +#pragma GCC diagnostic error "-Wunused-but-set-variable" >> +#endif > > '#pragma .. error' will defeat the configure code which makes warnings > not fatal in release builds.
I know. What's your suggestion? Switch only to warning? Then it would be easy to miss warnings. Disabling the valgrind code for gcc < 4.6 is better, but still not really nice. I thought having part of one file always use -Werror for this one warning is the best compromise, but I won't insist on it. Kevin