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:
parent
53a811eeb5
commit
83628902ad
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue