Commit beb683ab by Martin Jambor Committed by Martin Jambor

re PR ipa/61186 (./g++.dg/ipa/pr52939.C & valgrind & pointer_set_insert)

2014-06-13  Martin Jambor  <mjambor@suse.cz>

	PR ipa/61186
	* ipa-devirt.c (possible_polymorphic_call_targets): Store NULL to
	cache_token if returning early.

From-SVN: r211641
parent 2abacbae
2014-06-13 Martin Jambor <mjambor@suse.cz>
PR ipa/61186
* ipa-devirt.c (possible_polymorphic_call_targets): Store NULL to
cache_token if returning early.
2014-06-13 Nick Clifton <nickc@redhat.com>
* config/rx/rx.h (JUMP_ALIGN): Return the log value if user
......
......@@ -1603,6 +1603,8 @@ possible_polymorphic_call_targets (tree otr_type,
{
if (completep)
*completep = false;
if (cache_token)
*cache_token = NULL;
if (nonconstruction_targetsp)
*nonconstruction_targetsp = 0;
return nodes;
......@@ -1613,6 +1615,8 @@ possible_polymorphic_call_targets (tree otr_type,
{
if (completep)
*completep = true;
if (cache_token)
*cache_token = NULL;
if (nonconstruction_targetsp)
*nonconstruction_targetsp = 0;
return nodes;
......@@ -1626,6 +1630,8 @@ possible_polymorphic_call_targets (tree otr_type,
{
if (completep)
*completep = false;
if (cache_token)
*cache_token = NULL;
if (nonconstruction_targetsp)
*nonconstruction_targetsp = 0;
return nodes;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment