From 35b1a6faebd652c6d95cc709ddf8af02ff0feced Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Thu, 19 Jun 2003 21:43:59 +0200 Subject: 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 --- gcc/c-dump.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'gcc/c-dump.c') 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; -- cgit v1.2.1