Replace NULL with false as a return value

* cgraph.h (cgraph_edge::binds_to_current_def_p):
	Replace NULL with false as a return value.

From-SVN: r241336
This commit is contained in:
Martin Liska 2016-10-19 12:30:36 +02:00 committed by Martin Liska
parent a023f8c8dc
commit aff98801ac
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2016-10-19 Martin Liska <mliska@suse.cz>
* cgraph.h (cgraph_edge::binds_to_current_def_p):
Replace NULL with false as a return value.
2016-10-19 Thomas Schwinge <thomas@codesourcery.com>
PR tree-optimization/78024

View File

@ -3042,7 +3042,7 @@ cgraph_edge::binds_to_current_def_p ()
if (callee)
return callee->binds_to_current_def_p (caller);
else
return NULL;
return false;
}
/* Return true if the TM_CLONE bit is set for a given FNDECL. */