From: Marek Polacek Date: Thu, 11 Apr 2013 16:20:26 +0000 (+0000) Subject: re PR tree-optimization/48184 (ICE: SIGFPE (division by zero) in compute_alignments... X-Git-Tag: releases/gcc-4.9.0~6493 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b55f98f5ceb209d2d77147e29ad49a84da5d36d;p=thirdparty%2Fgcc.git re PR tree-optimization/48184 (ICE: SIGFPE (division by zero) in compute_alignments () at final.c:731 with --param align-threshold=0 on basic code) PR tree-optimization/48184 * params.def (PARAM_ALIGN_THRESHOLD): Increase the minimum value to 1. From-SVN: r197816 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 26f88ba5a6a1..ef5560b87144 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-04-11 Marek Polacek + + PR tree-optimization/48184 + * params.def (PARAM_ALIGN_THRESHOLD): Increase the minimum + value to 1. + 2013-04-11 Eric Botcazou * stor-layout.c (skip_simple_constant_arithmetic): Move to... diff --git a/gcc/params.def b/gcc/params.def index 10fd8fab39a3..3c5265160c68 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -376,7 +376,7 @@ DEFPARAM(HOT_BB_FREQUENCY_FRACTION, DEFPARAM (PARAM_ALIGN_THRESHOLD, "align-threshold", "Select fraction of the maximal frequency of executions of basic block in function given basic block get alignment", - 100, 0, 0) + 100, 1, 0) DEFPARAM (PARAM_ALIGN_LOOP_ITERATIONS, "align-loop-iterations",