spu.c (spu_option_override): Set parameter PARAM_MAX_COMPLETELY_PEEL_TIMES to 4 inste...
authorUlrich Weigand <uweigand@de.ibm.com>
Wed, 5 Jan 2011 18:44:54 +0000 (18:44 +0000)
committerUlrich Weigand <uweigand@gcc.gnu.org>
Wed, 5 Jan 2011 18:44:54 +0000 (18:44 +0000)
* config/spu/spu.c (spu_option_override): Set parameter
PARAM_MAX_COMPLETELY_PEEL_TIMES to 4 instead of 1.

From-SVN: r168525

gcc/ChangeLog
gcc/config/spu/spu.c

index 0ad56342feff184b063b77a17ec6f3744b48ae6a..ce4cdc6dc3248d1bfc52e07c2dd7a00880a6bc7b 100644 (file)
@@ -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
index 8e31655f1d30abbfafb611acca13372a2fa7220a..e141a15469128fdb438086007f3ae149f26aeda4 100644 (file)
@@ -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);