From: Jakub Jelinek Date: Wed, 18 Feb 2004 23:22:49 +0000 (+0100) Subject: i386.c (override_options): Don't imply 3DNow! X-Git-Tag: releases/gcc-4.0.0~10019 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fec9fa9b726c0d6099688c6aa8d9e342565f5a2;p=thirdparty%2Fgcc.git i386.c (override_options): Don't imply 3DNow! * config/i386/i386.c (override_options): Don't imply 3DNow! for -m64 by default. From-SVN: r78059 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a2b412f460eb..e7ed408448a6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-02-18 Jakub Jelinek + + * config/i386/i386.c (override_options): Don't imply 3DNow! for -m64 + by default. + 2004-02-18 Ulrich Weigand * config/s390/s390.md ("divmodtidi3"): Use canonical RTL. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index f7e6b7955930..3e5556d08e02 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1126,6 +1126,8 @@ override_options (void) | PTA_3DNOW_A | PTA_SSE}, {"athlon-mp", PROCESSOR_ATHLON, PTA_MMX | PTA_PREFETCH_SSE | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE}, + {"x86-64", PROCESSOR_K8, PTA_MMX | PTA_PREFETCH_SSE | PTA_64BIT + | PTA_SSE | PTA_SSE2 }, {"k8", PROCESSOR_K8, PTA_MMX | PTA_PREFETCH_SSE | PTA_3DNOW | PTA_64BIT | PTA_3DNOW_A | PTA_SSE | PTA_SSE2}, {"opteron", PROCESSOR_K8, PTA_MMX | PTA_PREFETCH_SSE | PTA_3DNOW | PTA_64BIT @@ -1168,7 +1170,7 @@ override_options (void) if (!ix86_tune_string) ix86_tune_string = cpu_names [TARGET_CPU_DEFAULT]; if (!ix86_arch_string) - ix86_arch_string = TARGET_64BIT ? "k8" : "i386"; + ix86_arch_string = TARGET_64BIT ? "x86-64" : "i386"; if (ix86_cmodel_string != 0) {