diff options
author | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-19 20:34:10 +0000 |
---|---|---|
committer | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-19 20:34:10 +0000 |
commit | fb84380a59197b10914b2258c149aee94b317d67 (patch) | |
tree | f55a99d28f04841642f126e415df18047f0526cd /gcc/c-dump.c | |
parent | b4c3eba372674a7b8d055e6987fb8ac6407b2ff3 (diff) | |
download | gcc-fb84380a59197b10914b2258c149aee94b317d67.tar.gz |
(gcc)
* c-common.h (c_dump_tree), c-dump.c (c_dump_tree),
langhooks-def.h (lhd_tree_dump_dump_tree),
langhooks.c (lhd_tree_dump_dump_tree), langhooks.h (*dump_tree):
Change return type from 'int' to 'bool'. Replace 0 and 1 with
true and false in return statements.
(cp)
* dump.c (cp_dump_tree), cp-tree.h (cp_dump_tree): Change return
type from 'int' to 'bool'. Replace 0 and 1 with true and false in
return statements.
(java)
* lang.c (java_dump_tree): Change return type from 'int' to 'bool'.
Replace 0 and 1 with true and false in return statements.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64596 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-dump.c')
-rw-r--r-- | gcc/c-dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-dump.c b/gcc/c-dump.c index 541910b6b9d..7f3464b38a0 100644 --- a/gcc/c-dump.c +++ b/gcc/c-dump.c @@ -49,7 +49,7 @@ dump_next_stmt (di, t) /* Dump any C-specific tree codes and attributes of common codes. */ -int +bool c_dump_tree (dump_info, t) void *dump_info; tree t; @@ -194,5 +194,5 @@ c_dump_tree (dump_info, t) break; } - return 0; + return false; } |