From: Will Cohen Date: Wed, 3 Jul 2002 14:15:44 +0000 (+0000) Subject: i386.c (x86_integer_DFmode_moves): Disable for PPro. X-Git-Tag: releases/gcc-3.3.0~3968 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=77966be34bd2032e26d43348362f76314c6870eb;p=thirdparty%2Fgcc.git i386.c (x86_integer_DFmode_moves): Disable for PPro. 2002-07-02 Will Cohen * config/i386/i386.c (x86_integer_DFmode_moves): Disable for PPro. From-SVN: r55211 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9218d3fefb5c..186f28f2733a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-07-02 Will Cohen + + * config/i386/i386.c (x86_integer_DFmode_moves): Disable for PPro. + Wed Jul 3 10:24:16 2002 J"orn Rennecke * optabs.c (expand_vector_binop): Don't store using a SUBREG smaller diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index faf723c4921a..819f0d72cc0c 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -387,7 +387,7 @@ const int x86_sub_esp_4 = m_ATHLON | m_PPRO | m_PENT4; const int x86_sub_esp_8 = m_ATHLON | m_PPRO | m_386 | m_486 | m_PENT4; const int x86_add_esp_4 = m_ATHLON | m_K6 | m_PENT4; const int x86_add_esp_8 = m_ATHLON | m_PPRO | m_K6 | m_386 | m_486 | m_PENT4; -const int x86_integer_DFmode_moves = ~(m_ATHLON | m_PENT4); +const int x86_integer_DFmode_moves = ~(m_ATHLON | m_PENT4 | m_PPRO); const int x86_partial_reg_dependency = m_ATHLON | m_PENT4; const int x86_memory_mismatch_stall = m_ATHLON | m_PENT4; const int x86_accumulate_outgoing_args = m_ATHLON | m_PENT4 | m_PPRO;