From: Uros Bizjak Date: Mon, 27 Nov 2006 19:50:40 +0000 (+0100) Subject: i386.c (x86_ext_80387_constants): Add m_K8, m_CORE2 and m_GENERIC64. X-Git-Tag: releases/gcc-4.3.0~8255 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71615adf0cb12ff53151630b94c7b9b53db518e0;p=thirdparty%2Fgcc.git i386.c (x86_ext_80387_constants): Add m_K8, m_CORE2 and m_GENERIC64. * config/i386/i386.c (x86_ext_80387_constants): Add m_K8, m_CORE2 and m_GENERIC64. From-SVN: r119260 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 35dded235729..fa65b982f329 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-11-27 Uros Bizjak + + * config/i386/i386.c (x86_ext_80387_constants): Add m_K8, m_CORE2 + and m_GENERIC64. + 2006-11-27 Bob Wilson * config/xtensa/xtensa.h (XCHAL_HAVE_MUL32_HIGH): Provide default. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 067c192bce47..0e172dbf286f 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1006,7 +1006,7 @@ const int x86_use_incdec = ~(m_PENT4 | m_NOCONA | m_CORE2 | m_GENERIC); integer data in xmm registers. Which results in pretty abysmal code. */ const int x86_inter_unit_moves = 0 /* ~(m_ATHLON_K8) */; -const int x86_ext_80387_constants = m_K6_GEODE | m_ATHLON | m_PENT4 | m_NOCONA | m_PPRO | m_GENERIC32; +const int x86_ext_80387_constants = m_K6_GEODE | m_ATHLON_K8 | m_PENT4 | m_NOCONA | m_PPRO | m_CORE2 | m_GENERIC; /* Some CPU cores are not able to predict more than 4 branch instructions in the 16 byte window. */ const int x86_four_jump_limit = m_PPRO | m_ATHLON_K8 | m_PENT4 | m_NOCONA | m_CORE2 | m_GENERIC;