diff options
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; |