diff options
author | SeokYeon Hwang <syeon.hwang@samsung.com> | 2014-12-23 22:26:54 +0000 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2015-01-15 10:44:13 +0300 |
commit | 2d8ac5eb7a7e72e0877cca2b3705eebeaf5526e7 (patch) | |
tree | 3633615fc476b7efb858702a30923af483956301 /translate-all.c | |
parent | 9c6d5c1ade0b681b6f93c3d9d214389355cc563c (diff) | |
download | qemu-2d8ac5eb7a7e72e0877cca2b3705eebeaf5526e7.zip qemu-2d8ac5eb7a7e72e0877cca2b3705eebeaf5526e7.tar.gz qemu-2d8ac5eb7a7e72e0877cca2b3705eebeaf5526e7.tar.bz2 |
translate-all: Mark map_exec() with the 'unused' attribute
Mark map_exec() with the 'unused' attribute to avoid '-Wunused-function'
warnings on clang 3.4 or later. This means we don't need to mark it
'inline', which is what we were previously using to suppress the warning
(a trick which only works with gcc, not clang).
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
[PMM: tweaked comment message a little]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'translate-all.c')
-rw-r--r-- | translate-all.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/translate-all.c b/translate-all.c index 8fa4378..687ba7d 100644 --- a/translate-all.c +++ b/translate-all.c @@ -276,14 +276,14 @@ bool cpu_restore_state(CPUState *cpu, uintptr_t retaddr) } #ifdef _WIN32 -static inline void map_exec(void *addr, long size) +static __attribute__((unused)) void map_exec(void *addr, long size) { DWORD old_protect; VirtualProtect(addr, size, PAGE_EXECUTE_READWRITE, &old_protect); } #else -static inline void map_exec(void *addr, long size) +static __attribute__((unused)) void map_exec(void *addr, long size) { unsigned long start, end, page_size; |