summaryrefslogtreecommitdiff
path: root/gcc/cccp.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1997-01-19 20:37:37 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1997-01-19 20:37:37 +0000
commit4572e18f34139ac518123ac607b416ab81923e26 (patch)
treec22e0bfc275ace5b954915eba24250f6b7daef84 /gcc/cccp.c
parentb6f2c660e0608bd842dc2ae41d9a35faf0b09984 (diff)
downloadgcc-4572e18f34139ac518123ac607b416ab81923e26.tar.gz
#define __attribute__ to be null if compiling with GCC older than 2.7,
not 2.6. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13522 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cccp.c')
-rw-r--r--gcc/cccp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index 930c9143b6e..93f5c355c47 100644
--- a/gcc/cccp.c
+++ b/gcc/cccp.c
@@ -174,7 +174,7 @@ my_bzero (b, length)
# endif /* !defined (BSTRING) && (defined (USG) || defined (VMS)) */
#endif /* ! STDC_HEADERS */
-#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
+#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
# define __attribute__(x)
#endif