diff options
author | Joseph Myers <joseph@codesourcery.com> | 2011-03-02 22:35:36 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2011-03-02 22:35:36 +0000 |
commit | 46d8fabb202d1107d3179f4b9928152ea74a72d7 (patch) | |
tree | 0883c99e16fa35a566c45474609412ca4078302f | |
parent | 6b1ce5454015ba8f4d0c5d0e35130494d4a96128 (diff) | |
download | gcc-46d8fabb202d1107d3179f4b9928152ea74a72d7.zip gcc-46d8fabb202d1107d3179f4b9928152ea74a72d7.tar.gz gcc-46d8fabb202d1107d3179f4b9928152ea74a72d7.tar.bz2 |
freebsd64.h (CC1_SPEC): Define.
* config/i386/freebsd64.h (CC1_SPEC): Define.
* config/i386/linux64.h (CC1_SPEC): Define.
* config/i386/x86-64.h (CC1_SPEC): Don't define.
From-SVN: r170625
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/freebsd64.h | 5 | ||||
-rw-r--r-- | gcc/config/i386/linux64.h | 5 | ||||
-rw-r--r-- | gcc/config/i386/x86-64.h | 6 |
4 files changed, 16 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e4b040c..0c8c51f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-03-02 Joseph Myers <joseph@codesourcery.com> + + * config/i386/freebsd64.h (CC1_SPEC): Define. + * config/i386/linux64.h (CC1_SPEC): Define. + * config/i386/x86-64.h (CC1_SPEC): Don't define. + 2011-03-02 Anatoly Sokolov <aesok@post.ru> * config/stormy16/stormy16.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST): diff --git a/gcc/config/i386/freebsd64.h b/gcc/config/i386/freebsd64.h index 67be570..8b5b149 100644 --- a/gcc/config/i386/freebsd64.h +++ b/gcc/config/i386/freebsd64.h @@ -1,5 +1,5 @@ /* Definitions for AMD x86-64 running FreeBSD with ELF format - Copyright (C) 2002, 2004, 2007, 2010 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2007, 2010, 2011 Free Software Foundation, Inc. Contributed by David O'Brien <obrien@FreeBSD.org> This file is part of GCC. @@ -25,6 +25,9 @@ along with GCC; see the file COPYING3. If not see #define SUBTARGET_EXTRA_SPECS \ { "fbsd_dynamic_linker", FBSD_DYNAMIC_LINKER } +#undef CC1_SPEC +#define CC1_SPEC "%(cc1_cpu) %{profile:-p}" + /* Provide a LINK_SPEC appropriate for the FreeBSD/x86-64 ELF target. This is a copy of LINK_SPEC from <i386/freebsd.h> tweaked for the x86-64 target. */ diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h index b68c40f..8392fab 100644 --- a/gcc/config/i386/linux64.h +++ b/gcc/config/i386/linux64.h @@ -1,5 +1,5 @@ /* Definitions for AMD x86-64 running Linux-based GNU systems with ELF format. - Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Contributed by Jan Hubicka <jh@suse.cz>, based on linux.h. @@ -40,6 +40,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #undef CPP_SPEC #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}" +#undef CC1_SPEC +#define CC1_SPEC "%(cc1_cpu) %{profile:-p}" + /* The svr4 ABI for the i386 says that records and unions are returned in memory. In the 64bit compilation we will turn this flag off in ix86_option_override_internal, as we never do pcc_struct_return diff --git a/gcc/config/i386/x86-64.h b/gcc/config/i386/x86-64.h index 402cf9a..b85dab9 100644 --- a/gcc/config/i386/x86-64.h +++ b/gcc/config/i386/x86-64.h @@ -1,5 +1,6 @@ /* OS independent definitions for AMD x86-64. - Copyright (C) 2001, 2005, 2007, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2001, 2005, 2007, 2009, 2010, 2011 + Free Software Foundation, Inc. Contributed by Bo Thorsen <bo@suse.de>. This file is part of GCC. @@ -48,9 +49,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #undef WCHAR_TYPE_SIZE #define WCHAR_TYPE_SIZE 32 -#undef CC1_SPEC -#define CC1_SPEC "%(cc1_cpu) %{profile:-p}" - #undef ASM_SPEC #define ASM_SPEC "%{m32:--32} %{m64:--64}" |