diff options
author | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-03 14:26:38 +0000 |
---|---|---|
committer | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-03 14:26:38 +0000 |
commit | 371e311879da2b552d743b9ff459902aa437a6da (patch) | |
tree | 0474a224e6767ff5d3e683ccecb93ecc6f3c7fcd /gcc/ipa-cp.c | |
parent | 60531edaa900fe3bef224f08794e3e76f76fc67f (diff) | |
download | gcc-371e311879da2b552d743b9ff459902aa437a6da.tar.gz |
2014-09-03 Martin Jambor <mjambor@suse.cz>
PR ipa/62015
* ipa-cp.c (intersect_aggregates_with_edge): Handle impermissible
pass-trough jump functions correctly.
testsuite/
* g++.dg/ipa/pr62015.C: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214878 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-cp.c')
-rw-r--r-- | gcc/ipa-cp.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c index 58121d4df3e..d3656349016 100644 --- a/gcc/ipa-cp.c +++ b/gcc/ipa-cp.c @@ -3048,6 +3048,11 @@ intersect_aggregates_with_edge (struct cgraph_edge *cs, int index, intersect_with_agg_replacements (cs->caller, src_idx, &inter, 0); } + else + { + inter.release (); + return vNULL; + } } else { @@ -3063,6 +3068,11 @@ intersect_aggregates_with_edge (struct cgraph_edge *cs, int index, else intersect_with_plats (src_plats, &inter, 0); } + else + { + inter.release (); + return vNULL; + } } } else if (jfunc->type == IPA_JF_ANCESTOR |