diff options
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/mep/mep.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4403003..cabfbe6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2009-07-13 DJ Delorie <dj@redhat.com> + * config/mep/mep.h (CC1_SPEC): Tweak parameters to trigger + unrolling at the right iteration count. + * config/mep/mep.c (mep_expand_prologue): Fix frame pointer calculations. diff --git a/gcc/config/mep/mep.h b/gcc/config/mep/mep.h index 4f58f70..353823c 100644 --- a/gcc/config/mep/mep.h +++ b/gcc/config/mep/mep.h @@ -43,8 +43,8 @@ along with GCC; see the file COPYING3. If not see #undef CC1_SPEC #define CC1_SPEC "%{!mlibrary:%(config_cc_spec)} \ -%{!.cc:%{O2:%{!funroll*:--param max-completely-peeled-insns=10 \ - --param max-unrolled-insns=10 -funroll-loops}}}" +%{!.cc:%{O2:%{!funroll*:--param max-completely-peeled-insns=6 \ + --param max-unrolled-insns=6 -funroll-loops}}}" #undef CC1PLUS_SPEC #define CC1PLUS_SPEC "%{!mlibrary:%(config_cc_spec)}" |