aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-01-09 08:48:06 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-01-09 08:48:06 +0000
commita6b1d0a7435a9e1e3a43d317e8aa797f37faf3a5 (patch)
tree009190f3f63b9c02890208e67a4e5b6a60a38b0a /gcc
parent2259ab56ccf781e19e7b0e648c9cf560b60a9e26 (diff)
downloadgcc-a6b1d0a7435a9e1e3a43d317e8aa797f37faf3a5.zip
gcc-a6b1d0a7435a9e1e3a43d317e8aa797f37faf3a5.tar.gz
gcc-a6b1d0a7435a9e1e3a43d317e8aa797f37faf3a5.tar.bz2
gansidecl.h: Allow attribute unused on labels only when we are version 2.93 or higher.
* 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. From-SVN: r24577
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/gansidecl.h4
-rw-r--r--gcc/version.c2
3 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ef257fe..eb9218d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+Sat Jan 9 11:44:55 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * 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.
+
Fri Jan 8 10:51:13 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* config/m68k/m68k.h: Declare output_function_epilogue.
diff --git a/gcc/gansidecl.h b/gcc/gansidecl.h
index da6817a..5929f15 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
diff --git a/gcc/version.c b/gcc/version.c
index 7eeca5d..8d18b55 100644
--- a/gcc/version.c
+++ b/gcc/version.c
@@ -1 +1 @@
-char *version_string = "egcs-2.92.34 19990109 (gcc2 ss-980609 experimental)";
+char *version_string = "egcs-2.93.00 19990109 (gcc2 ss-980609 experimental)";