Replace NULL with false as a return value
authorMartin Liska <mliska@suse.cz>
Wed, 19 Oct 2016 10:30:36 +0000 (12:30 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Wed, 19 Oct 2016 10:30:36 +0000 (10:30 +0000)
* cgraph.h (cgraph_edge::binds_to_current_def_p):
Replace NULL with false as a return value.

From-SVN: r241336

gcc/ChangeLog
gcc/cgraph.h

index 4117eb34637dbdb92f6c034bb1bbc5016cdad2c1..59b00d164f944303d6bbf0362532ab72da2e89ef 100644 (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
index ecafe63a5363e5b47ac4e670d73d77b2bfcb8b4b..cc730d2faf169cceb6ebafac8fd24ac728bde2f3 100644 (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.  */