diff options
author | Martin Jambor <mjambor@suse.cz> | 2010-10-04 12:15:10 +0200 |
---|---|---|
committer | Martin Jambor <jamborm@gcc.gnu.org> | 2010-10-04 12:15:10 +0200 |
commit | 1dbee8c9f90c562d20928c489412d4eca2e4b21a (patch) | |
tree | 6e4513da8811502ddc1fda4c23a67e0fd29d9709 /gcc/ipa-prop.c | |
parent | eeb4dfdacf3a27faa5487d7cdc0aea3f0473a0bd (diff) | |
download | gcc-1dbee8c9f90c562d20928c489412d4eca2e4b21a.zip gcc-1dbee8c9f90c562d20928c489412d4eca2e4b21a.tar.gz gcc-1dbee8c9f90c562d20928c489412d4eca2e4b21a.tar.bz2 |
re PR tree-optimization/45572 (various ICEs with -finline-small-functions -findirect-inlining -finline-functions)
2010-10-04 Martin Jambor <mjambor@suse.cz>
PR tree-optimization/45572
* ipa-prop.c (ipa_make_edge_direct_to_target): Call
ipa_check_create_node_params.
* ipa-inline.c (add_new_edges_to_heap): Do not insert inlined edges.
* testsuite/g++.dg/ipa/pr45572-1.C: New test.
* testsuite/g++.dg/ipa/pr45572-2.C: Likewise.
From-SVN: r164930
Diffstat (limited to 'gcc/ipa-prop.c')
-rw-r--r-- | gcc/ipa-prop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ipa-prop.c b/gcc/ipa-prop.c index e1d821e..9ffbb3f 100644 --- a/gcc/ipa-prop.c +++ b/gcc/ipa-prop.c @@ -1447,7 +1447,7 @@ ipa_make_edge_direct_to_target (struct cgraph_edge *ie, tree target) callee = cgraph_node (target); if (!callee) return NULL; - + ipa_check_create_node_params (); cgraph_make_edge_direct (ie, callee); if (dump_file) { |