From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46848) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlyLS-0005F9-1b for qemu-devel@nongnu.org; Wed, 05 Nov 2014 06:01:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XlyLN-0000Di-4K for qemu-devel@nongnu.org; Wed, 05 Nov 2014 06:01:45 -0500 Sender: Paolo Bonzini Message-ID: <545A0386.9030109@redhat.com> Date: Wed, 05 Nov 2014 12:01:26 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1415002312-30827-1-git-send-email-syeon.hwang@samsung.com> In-Reply-To: <1415002312-30827-1-git-send-email-syeon.hwang@samsung.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2] translate-all: Marked map_exec() with the 'unused' attribute List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: SeokYeon Hwang , qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, peter.maydell@linaro.org On 03/11/2014 09:11, SeokYeon Hwang wrote: > Marked map_exec() with the 'unused' attribute to avoid '-Wunused-function' on clang 3.4 or later. > > Signed-off-by: SeokYeon Hwang Cc: qemu-trivial@nongnu.org Reviewed-by: Paolo Bonzini > --- > translate-all.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/translate-all.c b/translate-all.c > index ba5c840..9d150fb 100644 > --- a/translate-all.c > +++ b/translate-all.c > @@ -270,14 +270,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; > >