projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a023f8c
)
Replace NULL with false as a return value
author
Martin Liska
<mliska@suse.cz>
Wed, 19 Oct 2016 10:30:36 +0000
(12:30 +0200)
committer
Martin 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
patch
|
blob
|
history
gcc/cgraph.h
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 4117eb34637dbdb92f6c034bb1bbc5016cdad2c1..59b00d164f944303d6bbf0362532ab72da2e89ef 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-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
diff --git
a/gcc/cgraph.h
b/gcc/cgraph.h
index ecafe63a5363e5b47ac4e670d73d77b2bfcb8b4b..cc730d2faf169cceb6ebafac8fd24ac728bde2f3 100644
(file)
--- a/
gcc/cgraph.h
+++ b/
gcc/cgraph.h
@@
-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. */