From 0d7845a7ec88c3df6156acd09ffd1e01a76cae8e Mon Sep 17 00:00:00 2001 From: obrien Date: Tue, 16 Dec 2003 05:40:06 +0000 Subject: One might want to correctly generate 32-bit code on an Opteron. Submitted by: peter --- contrib/gcc/config/i386/freebsd64.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/gcc/config/i386/freebsd64.h b/contrib/gcc/config/i386/freebsd64.h index 548b092..abcd965 100644 --- a/contrib/gcc/config/i386/freebsd64.h +++ b/contrib/gcc/config/i386/freebsd64.h @@ -29,7 +29,10 @@ Boston, MA 02111-1307, USA. */ #define FBSD_TARGET_CPU_CPP_BUILTINS() \ do \ { \ - builtin_define ("__LP64__"); \ + if (TARGET_64BIT) \ + { \ + builtin_define ("__LP64__"); \ + } \ } \ while (0) -- cgit v1.1