From: hubicka Date: Sat, 9 Feb 2019 17:56:22 +0000 (+0000) Subject: PR ipa/88755 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d47011127d5ba67f3fefdaa590cb26be6aeca19;p=thirdparty%2Fgcc.git PR ipa/88755 * params.def (uninlined-function-insns, uninlined-function-time, uninlined-thunk-insns, uninlined-thunk-time): Add artificial upper bound so we don't get overflows. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@268727 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b0cfc0f1ed5a..720ec2ebf611 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2019-02-09 Jan Hubicka + + PR ipa/88755 + * params.def (uninlined-function-insns, uninlined-function-time, + uninlined-thunk-insns, uninlined-thunk-time): Add artificial upper + bound so we don't get overflows. + 2019-02-09 Aaron Sawdey * config/rs6000/rs6000-string.c (expand_compare_loop, diff --git a/gcc/params.def b/gcc/params.def index f337d1eeb4c9..3f1576448be3 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -96,23 +96,23 @@ DEFPARAM (PARAM_UNINLINED_FUNCTION_INSNS, "uninlined-function-insns", "Instruction accounted for function prologue, epilogue and other" " overhead.", - 2, 0, 0) + 2, 0, 1000000) DEFPARAM (PARAM_UNINLINED_FUNCTION_TIME, "uninlined-function-time", "Time accounted for function prologue, epilogue and other" " overhead.", - 0, 0, 0) + 0, 0, 1000000) DEFPARAM (PARAM_UNINLINED_FUNCTION_THUNK_INSNS, "uninlined-thunk-insns", "Instruction accounted for function thunk overhead.", - 2, 0, 0) + 2, 0, 1000000) DEFPARAM (PARAM_UNINLINED_FUNCTION_THUNK_TIME, "uninlined-thunk-time", "Time accounted for function thunk overhead.", - 2, 0, 0) + 2, 0, 1000000) DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE, "max-inline-insns-recursive",