diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 11fb054..e7f3745 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-11-16 Steven Bosscher <stevenb@suse.de> + + * config/i386/i386.c (x86_schedule): Fix typo, m_K6 intead of m_K8. + 2004-11-15 Dale Johannesen <dalej@apple.com> * tree-flow.h (add_referenced_temp_var): Remove name from prototype. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 9978637..71c9d98 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -578,7 +578,7 @@ const int x86_ext_80387_constants = m_K6 | m_ATHLON | m_PENT4 | m_NOCONA | m_PPR /* 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; -const int x86_schedule = m_PPRO | m_ATHLON_K8 | m_K8 | m_PENT; +const int x86_schedule = m_PPRO | m_ATHLON_K8 | m_K6 | m_PENT; /* In case the average insn count for single function invocation is lower than this constant, emit fast (but longer) prologue and |