gansidecl.h: Allow attribute unused on labels only when we are version 2.93 or higher.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sat, 9 Jan 1999 08:48:06 +0000 (08:48 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sat, 9 Jan 1999 08:48:06 +0000 (08:48 +0000)
        * 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

gcc/ChangeLog
gcc/gansidecl.h
gcc/version.c

index ef257fe82bfbff501960c23b3ee867b31c40fbc7..eb9218d8a5185df3bce4a270441ab811added085 100644 (file)
@@ -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.
index da6817ae5981ba78b697db6685709163f44927a0..5929f152ad9642686a8afc1662bafa127dba62ba 100644 (file)
@@ -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
index 7eeca5d0af2453af0a7f28793bcda141fe35974f..8d18b551dee1633b2c0895da7b4036e42d05b6e8 100644 (file)
@@ -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)";