diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2010-02-28 17:55:16 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2010-02-28 09:55:16 -0800 |
commit | 746ecbcda2f373c62317ce86e4e23f9df50b2254 (patch) | |
tree | 9b886c4acac99585ca4610bdf3bba903295d9a88 /gcc/config | |
parent | 2a3dbebf6cae67ee70ac0e290421a2681e041a3d (diff) | |
download | gcc-746ecbcda2f373c62317ce86e4e23f9df50b2254.zip gcc-746ecbcda2f373c62317ce86e4e23f9df50b2254.tar.gz gcc-746ecbcda2f373c62317ce86e4e23f9df50b2254.tar.bz2 |
Make TARGET_SUBTARGET32_ISA_DEFAULT the same as
TARGET_SUBTARGET64_ISA_DEFAULT for Darwin/x86.
2010-02-28 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/darwin.h (TARGET_SUBTARGET32_ISA_DEFAULT): Make
it the same as TARGET_SUBTARGET64_ISA_DEFAULT.
From-SVN: r157125
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/darwin.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/config/i386/darwin.h b/gcc/config/i386/darwin.h index eb9ee70..49863a6 100644 --- a/gcc/config/i386/darwin.h +++ b/gcc/config/i386/darwin.h @@ -162,14 +162,12 @@ extern void darwin_x86_file_end (void); #undef TARGET_SUBTARGET32_ISA_DEFAULT #define TARGET_SUBTARGET32_ISA_DEFAULT (OPTION_MASK_ISA_MMX \ | OPTION_MASK_ISA_SSE \ - | OPTION_MASK_ISA_SSE2) - -#undef TARGET_SUBTARGET64_ISA_DEFAULT -#define TARGET_SUBTARGET64_ISA_DEFAULT (OPTION_MASK_ISA_MMX \ - | OPTION_MASK_ISA_SSE \ | OPTION_MASK_ISA_SSE2 \ | OPTION_MASK_ISA_SSE3) +#undef TARGET_SUBTARGET64_ISA_DEFAULT +#define TARGET_SUBTARGET64_ISA_DEFAULT TARGET_SUBTARGET32_ISA_DEFAULT + /* For now, disable dynamic-no-pic. We'll need to go through i386.c with a fine-tooth comb looking for refs to flag_pic! */ #define MASK_MACHO_DYNAMIC_NO_PIC 0 |