Re: [Qemu-devel] [PATCH 0/5] target-mips: Fix unused-function warnings

2014-09-15 Thread Richard Henderson
On 09/14/2014 12:45 PM, Peter Maydell wrote: > These patches fix a number of warnings in target-mips code that > clang produces; notably, clang will complain about unused > 'static inline' functions in .c files where gcc does not. > Some are genuinely totally unused; a few are unused only in some >

[Qemu-devel] [PATCH 0/5] target-mips: Fix unused-function warnings

2014-09-14 Thread Peter Maydell
These patches fix a number of warnings in target-mips code that clang produces; notably, clang will complain about unused 'static inline' functions in .c files where gcc does not. Some are genuinely totally unused; a few are unused only in some configs and so we add ifdef guards. (I've actually ha