diff options
author | Jan Hubicka <jh@suse.cz> | 2004-02-17 23:44:07 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2004-02-17 22:44:07 +0000 |
commit | 7b50a809ec4c5aa804d3841e1f573bb72bc0c263 (patch) | |
tree | 05e30e47d3038650aab14590b0e21a12b80fa5fe /gcc/config/i386/i386.c | |
parent | 8051c2eb7a942d45736aa566419a9fec8ee96a27 (diff) | |
download | gcc-7b50a809ec4c5aa804d3841e1f573bb72bc0c263.zip gcc-7b50a809ec4c5aa804d3841e1f573bb72bc0c263.tar.gz gcc-7b50a809ec4c5aa804d3841e1f573bb72bc0c263.tar.bz2 |
* i386.c (x86_prologue_using_move, x86_epilogue_using_move): Disable for P4.
From-SVN: r77994
Diffstat (limited to 'gcc/config/i386/i386.c')
-rw-r--r-- | gcc/config/i386/i386.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 5f4a020..f7e6b79 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -505,8 +505,8 @@ const int x86_integer_DFmode_moves = ~(m_ATHLON_K8 | m_PENT4 | m_PPRO); const int x86_partial_reg_dependency = m_ATHLON_K8 | m_PENT4; const int x86_memory_mismatch_stall = m_ATHLON_K8 | m_PENT4; const int x86_accumulate_outgoing_args = m_ATHLON_K8 | m_PENT4 | m_PPRO; -const int x86_prologue_using_move = m_ATHLON_K8 | m_PENT4 | m_PPRO; -const int x86_epilogue_using_move = m_ATHLON_K8 | m_PENT4 | m_PPRO; +const int x86_prologue_using_move = m_ATHLON_K8 | m_PPRO; +const int x86_epilogue_using_move = m_ATHLON_K8 | m_PPRO; const int x86_decompose_lea = m_PENT4; const int x86_shift1 = ~m_486; const int x86_arch_always_fancy_math_387 = m_PENT | m_PPRO | m_ATHLON_K8 | m_PENT4; |