aboutsummaryrefslogtreecommitdiff
path: root/gas/as.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-04-29 00:56:29 +0000
committerAlan Modra <amodra@gmail.com>2000-04-29 00:56:29 +0000
commita1934524a3fc1e93084d3148ddf590eb78eba875 (patch)
tree953088caff9e271c09fbfcabddc5d069d368eaf5 /gas/as.h
parent14958a432dbf8acd11a54f9956a12290dc1ea6e2 (diff)
downloadfsf-binutils-gdb-a1934524a3fc1e93084d3148ddf590eb78eba875.zip
fsf-binutils-gdb-a1934524a3fc1e93084d3148ddf590eb78eba875.tar.gz
fsf-binutils-gdb-a1934524a3fc1e93084d3148ddf590eb78eba875.tar.bz2
Correctly check gcc version.
Diffstat (limited to 'gas/as.h')
-rw-r--r--gas/as.h4
1 files changed, 2 insertions, 2 deletions
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