From ef5a3ab797c44338482e1c2bf85d603e627039ae Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Mon, 17 Mar 2008 09:21:42 +0100 Subject: [PATCH] add underscores around __unused__ attribute 2008-03-15 Paolo Bonzini * lightning/asm-common.h: Add underscores around __unused__ attribute. --- ChangeLog | 5 +++++ lightning/asm-common.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 746700835..29cdc2818 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-15 Paolo Bonzini + + * lightning/asm-common.h: Add underscores around __unused__ + attribute. + 2008-03-15 Paolo Bonzini * lightning/ppc/core.h: Avoid some "value computed is not used" diff --git a/lightning/asm-common.h b/lightning/asm-common.h index 46344c687..d66c0d6ec 100644 --- a/lightning/asm-common.h +++ b/lightning/asm-common.h @@ -55,7 +55,7 @@ #endif #ifdef __GNUC__ -#define JIT_UNUSED __attribute__((unused)) +#define JIT_UNUSED __attribute__((__unused__)) #else #define JIT_UNUSED #endif