diff options
author | DJ Delorie <dj@redhat.com> | 2009-06-16 13:21:26 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-06-16 13:21:26 +0000 |
commit | 671f4ed1aa129d71951e461890cbfdb1f5209d99 (patch) | |
tree | 99d22384ed098fb4af3bf4c39dfcc7fb5c5cfaf3 /include/ansidecl.h | |
parent | 5d7aee10551db7bde4ec3043ca84f7b3eb6c0565 (diff) | |
download | gdb-671f4ed1aa129d71951e461890cbfdb1f5209d99.zip gdb-671f4ed1aa129d71951e461890cbfdb1f5209d99.tar.gz gdb-671f4ed1aa129d71951e461890cbfdb1f5209d99.tar.bz2 |
merge from gcc
Diffstat (limited to 'include/ansidecl.h')
-rw-r--r-- | include/ansidecl.h | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/include/ansidecl.h b/include/ansidecl.h index f9864cd..86b0944 100644 --- a/include/ansidecl.h +++ b/include/ansidecl.h @@ -261,14 +261,23 @@ So instead we use the macro below and test it against specific values. */ # endif /* GNUC >= 2.96 */ #endif /* ATTRIBUTE_MALLOC */ -/* Attributes on labels were valid as of gcc 2.93. */ +/* Attributes on labels were valid as of gcc 2.93 and g++ 4.5. For + g++ an attribute on a label must be followed by a semicolon. */ #ifndef ATTRIBUTE_UNUSED_LABEL -# if (!defined (__cplusplus) && GCC_VERSION >= 2093) -# define ATTRIBUTE_UNUSED_LABEL ATTRIBUTE_UNUSED +# ifndef __cplusplus +# if GCC_VERSION >= 2093 +# define ATTRIBUTE_UNUSED_LABEL ATTRIBUTE_UNUSED +# else +# define ATTRIBUTE_UNUSED_LABEL +# endif # else -# define ATTRIBUTE_UNUSED_LABEL -# endif /* !__cplusplus && GNUC >= 2.93 */ -#endif /* ATTRIBUTE_UNUSED_LABEL */ +# if GCC_VERSION >= 4005 +# define ATTRIBUTE_UNUSED_LABEL ATTRIBUTE_UNUSED ; +# else +# define ATTRIBUTE_UNUSED_LABEL +# endif +# endif +#endif #ifndef ATTRIBUTE_UNUSED #define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) |