diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-19 21:43:59 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-19 21:43:59 +0200 |
commit | 35b1a6faebd652c6d95cc709ddf8af02ff0feced (patch) | |
tree | fd1cc81909b4c6acb6b6330a8a8b58659c5e5ba3 /gcc/c-dump.c | |
parent | 6dab8d4cdf065d4045132d01e9c2556bdcab4195 (diff) | |
download | gcc-35b1a6faebd652c6d95cc709ddf8af02ff0feced.tar.gz |
c-aux-info.c: Convert to ISO C99.
* c-aux-info.c: Convert to ISO C99.
* c-pragma.c: Likewise.
* c-common.c: Likewise.
* c-common.h: Likewise.
* c-convert.c: Likewise.
* c-cppbuiltin.c: Likewise.
* c-dump.c: Likewise.
* c-decl.c: Likewise
* c-format.c: Likewise.
* c-incpath.c: Likewise.
* c-incpath.h: Likewise.
From-SVN: r68218
Diffstat (limited to 'gcc/c-dump.c')
-rw-r--r-- | gcc/c-dump.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gcc/c-dump.c b/gcc/c-dump.c index 7f3464b38a0..5403bf88601 100644 --- a/gcc/c-dump.c +++ b/gcc/c-dump.c @@ -30,9 +30,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Dump information common to statements from STMT. */ void -dump_stmt (di, t) - dump_info_p di; - tree t; +dump_stmt (dump_info_p di, tree t) { dump_int (di, "line", STMT_LINENO (t)); } @@ -40,9 +38,7 @@ dump_stmt (di, t) /* Dump the next statement after STMT. */ void -dump_next_stmt (di, t) - dump_info_p di; - tree t; +dump_next_stmt (dump_info_p di, tree t) { dump_child ("next", TREE_CHAIN (t)); } @@ -50,9 +46,7 @@ dump_next_stmt (di, t) /* Dump any C-specific tree codes and attributes of common codes. */ bool -c_dump_tree (dump_info, t) - void *dump_info; - tree t; +c_dump_tree (void *dump_info, tree t) { enum tree_code code; dump_info_p di = (dump_info_p) dump_info; |