mark unused variables in x86emu as unused. gcc has a mechanism for this.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5738 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2010-08-23 18:43:27 +00:00 committed by Stefan Reinauer
parent 53a811eeb5
commit 83628902ad
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@
#ifdef __cplusplus
#define X86EMU_UNUSED(v)
#else
#define X86EMU_UNUSED(v) v
#define X86EMU_UNUSED(v) v __attribute__((unused))
#endif
#include "x86emu/x86emu.h"