aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2011-01-05 18:44:54 +0000
committerUlrich Weigand <uweigand@gcc.gnu.org>2011-01-05 18:44:54 +0000
commitdc242c4a72ce443301a7546404c1c67c22225a24 (patch)
treebbc91fc532445bfc6a4661615a6957d9bc61053f /gcc
parent01738cee0f4ba9def10c783557f9341e9f9955ba (diff)
downloadgcc-dc242c4a72ce443301a7546404c1c67c22225a24.zip
gcc-dc242c4a72ce443301a7546404c1c67c22225a24.tar.gz
gcc-dc242c4a72ce443301a7546404c1c67c22225a24.tar.bz2
spu.c (spu_option_override): Set parameter PARAM_MAX_COMPLETELY_PEEL_TIMES to 4 instead of 1.
* config/spu/spu.c (spu_option_override): Set parameter PARAM_MAX_COMPLETELY_PEEL_TIMES to 4 instead of 1. From-SVN: r168525
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/spu/spu.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0ad5634..ce4cdc6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2011-01-05 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
+
+ * config/spu/spu.c (spu_option_override): Set parameter
+ PARAM_MAX_COMPLETELY_PEEL_TIMES to 4 instead of 1.
+
2011-01-05 Jan Hubicka <jh@suse.cz>
* lto-wrapper.c (run_gcc): Default to WHOPR mode when none is specified
diff --git a/gcc/config/spu/spu.c b/gcc/config/spu/spu.c
index 8e31655..e141a15 100644
--- a/gcc/config/spu/spu.c
+++ b/gcc/config/spu/spu.c
@@ -516,7 +516,7 @@ spu_option_override (void)
/* Small loops will be unpeeled at -O3. For SPU it is more important
to keep code small by default. */
if (!flag_unroll_loops && !flag_peel_loops)
- maybe_set_param_value (PARAM_MAX_COMPLETELY_PEEL_TIMES, 1,
+ maybe_set_param_value (PARAM_MAX_COMPLETELY_PEEL_TIMES, 4,
global_options.x_param_values,
global_options_set.x_param_values);