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
This commit is contained in:
Kaveh R. Ghazi 1999-01-09 08:48:06 +00:00 committed by Kaveh Ghazi
parent 2259ab56cc
commit a6b1d0a743
3 changed files with 10 additions and 3 deletions

View 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.

View 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

View 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)";