Commit b2d82f2d by Jan Hubicka Committed by Jan Hubicka

re PR ipa/60665 (gcc/ipa-devirt.c:1510:7: warning: variable 'can_refer' is used…

re PR ipa/60665 (gcc/ipa-devirt.c:1510:7: warning: variable 'can_refer' is used uninitialized whenever '?:' condition is false)


	PR ipa/60665
	* ipa-devirt.c (possible_polymorphic_call_targets): Silence clang warning.

From-SVN: r215656
parent ec1d732b
2014-09-26 Jan Hubicka <hubicka@ucw.cz>
PR ipa/60665
* ipa-devirt.c (possible_polymorphic_call_targets): Silence clang warning.
2014-09-26 Jan Hubicka <hubicka@ucw.cz>
PR ipa/62121
......@@ -2217,7 +2217,7 @@ possible_polymorphic_call_targets (tree otr_type,
unsigned int i;
tree binfo, target;
bool complete;
bool can_refer;
bool can_refer = false;
bool skipped = false;
otr_type = TYPE_MAIN_VARIANT (otr_type);
......
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