From a1934524a3fc1e93084d3148ddf590eb78eba875 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Sat, 29 Apr 2000 00:56:29 +0000 Subject: Correctly check gcc version. --- gas/as.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gas/as.h') diff --git a/gas/as.h b/gas/as.h index c8d3787..33a400a 100644 --- a/gas/as.h +++ b/gas/as.h @@ -112,7 +112,7 @@ extern void *alloca (); #ifdef DEBUG #undef NDEBUG #endif -#if !defined (__GNUC__) || __GNUC_MINOR__ <= 5 +#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6) #define __PRETTY_FUNCTION__ ((char*)0) #endif #if 0 @@ -512,7 +512,7 @@ typedef struct _pseudo_type pseudo_typeS; #if (__GNUC__ >= 2) && !defined(VMS) /* for use with -Wformat */ -#if __GNUC_MINOR__ < 6 +#if __GNUC__ == 2 && __GNUC_MINOR__ < 6 /* Support for double underscores in attribute names was added in gcc 2.6, so avoid them if we are using an earlier version. */ #define __printf__ printf -- cgit v1.1