diff options
author | Jan Hubicka <jh@suse.cz> | 2013-02-05 10:13:48 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2013-02-05 09:13:48 +0000 |
commit | ec4224ace54a5be0094fca263fe138f0ec77a61c (patch) | |
tree | c87abbd341862d805e335733b87d3d48afed3a67 /gcc/params.def | |
parent | 39f9719e9a6a8f061c8654f4e54d804f61a6f982 (diff) | |
download | gcc-ec4224ace54a5be0094fca263fe138f0ec77a61c.zip gcc-ec4224ace54a5be0094fca263fe138f0ec77a61c.tar.gz gcc-ec4224ace54a5be0094fca263fe138f0ec77a61c.tar.bz2 |
re PR middle-end/55797 (ICE: verify_cgraph_node failed: edge has no corresponding call_stmt)
PR tree-optimization/55789
* g++.dg/tree-ssa/inline-1.C: Update max-inliner-iterations.
* g++.dg/tree-ssa/inline-2.C: Update max-inliner-iterations.
* g++.dg/tree-ssa/inline-3.C: Update max-inliner-iterations.
* g++.dg/ipa/inline-1.C: New testcase.
* g++.dg/ipa/inline-2.C: New testcase.
* g++.dg/ipa/inline-3.C: New testcase.
* params.def (PARAM_EARLY_INLINER_MAX_ITERATIONS): Drop to 1.
From-SVN: r195751
Diffstat (limited to 'gcc/params.def')
-rw-r--r-- | gcc/params.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/params.def b/gcc/params.def index 055b45a..97d4857 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -109,7 +109,7 @@ DEFPARAM (PARAM_MIN_INLINE_RECURSIVE_PROBABILITY, DEFPARAM (PARAM_EARLY_INLINER_MAX_ITERATIONS, "max-early-inliner-iterations", "The maximum number of nested indirect inlining performed by early inliner", - 10, 0, 0) + 1, 0, 0) /* Limit on probability of entry BB. */ DEFPARAM (PARAM_COMDAT_SHARING_PROBABILITY, |