Commit b2deed12 by Martin Liska Committed by Martin Liska

Fix parenthesis in auto-profile.c (PR other/80909).

2017-05-30  Martin Liska  <mliska@suse.cz>

	PR other/80909
	* auto-profile.c (get_function_decl_from_block): Fix
	parenthesis.

From-SVN: r248647
parent 892d6169
2017-05-30 Martin Liska <mliska@suse.cz>
PR other/80909
* auto-profile.c (get_function_decl_from_block): Fix
parenthesis.
2017-05-30 Richard Biener <rguenther@suse.de> 2017-05-30 Richard Biener <rguenther@suse.de>
PR middle-end/80876 PR middle-end/80876
......
...@@ -356,7 +356,7 @@ get_function_decl_from_block (tree block) ...@@ -356,7 +356,7 @@ get_function_decl_from_block (tree block)
{ {
tree decl; tree decl;
if (LOCATION_LOCUS (BLOCK_SOURCE_LOCATION (block) == UNKNOWN_LOCATION)) if (LOCATION_LOCUS (BLOCK_SOURCE_LOCATION (block)) == UNKNOWN_LOCATION)
return NULL_TREE; return NULL_TREE;
for (decl = BLOCK_ABSTRACT_ORIGIN (block); for (decl = BLOCK_ABSTRACT_ORIGIN (block);
......
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