diff options
author | obrien <obrien@FreeBSD.org> | 2003-12-15 10:34:01 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-12-15 10:34:01 +0000 |
commit | 0a1e7b39d8f8fb403c4ac7ce06bba58f8957c36d (patch) | |
tree | c0488e10abaa617cc1d78ee64545c33eb103310f /contrib/gcc/config/alpha | |
parent | 58652b52677893698d3dff4274cb4ca4b558c991 (diff) | |
download | FreeBSD-src-0a1e7b39d8f8fb403c4ac7ce06bba58f8957c36d.zip FreeBSD-src-0a1e7b39d8f8fb403c4ac7ce06bba58f8957c36d.tar.gz |
Consistently define __LP64__ on all our 64-bit platforms.
Diffstat (limited to 'contrib/gcc/config/alpha')
-rw-r--r-- | contrib/gcc/config/alpha/freebsd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/gcc/config/alpha/freebsd.h b/contrib/gcc/config/alpha/freebsd.h index 4bfe666..f7c5703 100644 --- a/contrib/gcc/config/alpha/freebsd.h +++ b/contrib/gcc/config/alpha/freebsd.h @@ -27,10 +27,11 @@ Boston, MA 02111-1307, USA. */ the GCC option `-posix', and PIC issues as on all FreeBSD platforms, we must deal with the Alpha's FP issues. */ -#undef FBSD_TARGET_CPU_CPP_BUILTINS +#undef FBSD_TARGET_CPU_CPP_BUILTINS #define FBSD_TARGET_CPU_CPP_BUILTINS() \ do \ { \ + builtin_define ("__LP64__"); \ if (flag_pic) \ { \ builtin_define ("__PIC__"); \ |