summaryrefslogtreecommitdiff
path: root/gcc/gansidecl.h
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-01-09 08:48:06 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-01-09 08:48:06 +0000
commitce7eb1b5c2c003c510f5ee7b3fb4294865eae712 (patch)
tree009190f3f63b9c02890208e67a4e5b6a60a38b0a /gcc/gansidecl.h
parent5556a5502517eea0d3da7aaec204c62881e486ad (diff)
downloadgcc-ce7eb1b5c2c003c510f5ee7b3fb4294865eae712.tar.gz
* gansidecl.h: Allow attribute unused on labels only when we are
version 2.93 or higher. Not all versions of 2.92 have this feature. * version.c: Bump minor number to 93. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24577 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gansidecl.h')
-rw-r--r--gcc/gansidecl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gansidecl.h b/gcc/gansidecl.h
index da6817ae598..5929f152ad9 100644
--- a/gcc/gansidecl.h
+++ b/gcc/gansidecl.h
@@ -39,11 +39,11 @@ Boston, MA 02111-1307, USA. */
#endif
#ifndef ATTRIBUTE_UNUSED_LABEL
-# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 92)
+# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 93)
# define ATTRIBUTE_UNUSED_LABEL
# else
# define ATTRIBUTE_UNUSED_LABEL ATTRIBUTE_UNUSED
-# endif /* GNUC < 2.92 */
+# endif /* GNUC < 2.93 */
#endif /* ATTRIBUTE_UNUSED_LABEL */
#ifndef ATTRIBUTE_UNUSED