1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-19 18:20:22 +02:00

add underscores around __unused__ attribute

2008-03-15  Paolo Bonzini  <bonzini@gnu.org>

	* lightning/asm-common.h: Add underscores around __unused__
	attribute.
This commit is contained in:
Paolo Bonzini 2008-03-17 09:21:42 +01:00
parent 3a199529db
commit ef5a3ab797
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-03-15 Paolo Bonzini <bonzini@gnu.org>
* lightning/asm-common.h: Add underscores around __unused__
attribute.
2008-03-15 Paolo Bonzini <bonzini@gnu.org>
* lightning/ppc/core.h: Avoid some "value computed is not used"

View file

@ -55,7 +55,7 @@
#endif
#ifdef __GNUC__
#define JIT_UNUSED __attribute__((unused))
#define JIT_UNUSED __attribute__((__unused__))
#else
#define JIT_UNUSED
#endif