From: Uros Bizjak Date: Sun, 7 Jul 2013 19:06:45 +0000 (+0200) Subject: driver-i386.c (host_detect_local_cpu): Do not check signature_TM2_ebx, it interferes... X-Git-Tag: releases/gcc-4.9.0~5114 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b9d1bd8d1116b9d46b1893e8db8e021c1b03676;p=thirdparty%2Fgcc.git driver-i386.c (host_detect_local_cpu): Do not check signature_TM2_ebx, it interferes with signature_INTEL_ebx. * config/i386/driver-i386.c (host_detect_local_cpu): Do not check signature_TM2_ebx, it interferes with signature_INTEL_ebx. From-SVN: r200744 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ffe2351741cd..e6c3674dc4af 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-07-07 Uros Bizjak + + * config/i386/driver-i386.c (host_detect_local_cpu): Do not check + signature_TM2_ebx, it interferes with signature_INTEL_ebx. + 2013-07-06 Uros Bizjak * config/i386/sse.md (sse_movlhps): Change alternative 3 diff --git a/gcc/config/i386/driver-i386.c b/gcc/config/i386/driver-i386.c index 249c4cd1d53d..c8b71c8edf9a 100644 --- a/gcc/config/i386/driver-i386.c +++ b/gcc/config/i386/driver-i386.c @@ -520,8 +520,7 @@ const char *host_detect_local_cpu (int argc, const char **argv) if (vendor == signature_AMD_ebx || vendor == signature_CENTAUR_ebx || vendor == signature_CYRIX_ebx - || vendor == signature_NSC_ebx - || vendor == signature_TM2_ebx) + || vendor == signature_NSC_ebx) cache = detect_caches_amd (ext_level); else if (vendor == signature_INTEL_ebx) {