diff options
author | Alan Modra <amodra@gmail.com> | 2000-04-29 00:56:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-04-29 00:56:29 +0000 |
commit | a1934524a3fc1e93084d3148ddf590eb78eba875 (patch) | |
tree | 953088caff9e271c09fbfcabddc5d069d368eaf5 /gas/as.h | |
parent | 14958a432dbf8acd11a54f9956a12290dc1ea6e2 (diff) | |
download | gdb-a1934524a3fc1e93084d3148ddf590eb78eba875.zip gdb-a1934524a3fc1e93084d3148ddf590eb78eba875.tar.gz gdb-a1934524a3fc1e93084d3148ddf590eb78eba875.tar.bz2 |
Correctly check gcc version.
Diffstat (limited to 'gas/as.h')
-rw-r--r-- | gas/as.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |