diff options
author | obrien <obrien@FreeBSD.org> | 2005-10-30 19:04:47 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2005-10-30 19:04:47 +0000 |
commit | 1d93f083bf03400439b86271732e2b3f17ba284c (patch) | |
tree | 8f8bba9b2ac9c8456ee8a2e9d92bf25b447ecf78 /contrib/gcc | |
parent | 7c66d4d57066b0367c94c88d5a7d6bf65052fb41 (diff) | |
download | FreeBSD-src-1d93f083bf03400439b86271732e2b3f17ba284c.zip FreeBSD-src-1d93f083bf03400439b86271732e2b3f17ba284c.tar.gz |
Locate __FreeBSD_cc_version's value beside __FreeBSD__'s value to make it
easier to keep them in sync.
Diffstat (limited to 'contrib/gcc')
-rw-r--r-- | contrib/gcc/config/freebsd-spec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/config/freebsd-spec.h b/contrib/gcc/config/freebsd-spec.h index bdde3f0..a070936 100644 --- a/contrib/gcc/config/freebsd-spec.h +++ b/contrib/gcc/config/freebsd-spec.h @@ -70,7 +70,7 @@ Boston, MA 02111-1307, USA. */ #ifdef FREEBSD_NATIVE #define FBSD_NATIVE_TARGET_OS_CPP_BUILTINS() \ do { \ - builtin_define_std ("__FreeBSD_cc_version=700001"); \ + builtin_define_with_int_value ("__FreeBSD_cc_version", FBSD_CC_VER); \ } while (0) #else #define FBSD_NATIVE_TARGET_OS_CPP_BUILTINS() \ |