OSDN Git Service

* g++.dg/eh/simd-1.C: XFAIL on SPARC.
[pf3gnuchains/gcc-fork.git] / gcc / c-dump.c
index 541910b..5403bf8 100644 (file)
@@ -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,19 +38,15 @@ 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));
 }
 
 /* Dump any C-specific tree codes and attributes of common codes.  */
 
-int
-c_dump_tree (dump_info, t)
-     void *dump_info;
-     tree t;
+bool
+c_dump_tree (void *dump_info, tree t)
 {
   enum tree_code code;
   dump_info_p di = (dump_info_p) dump_info;
@@ -194,5 +188,5 @@ c_dump_tree (dump_info, t)
       break;
     }
 
-  return 0;
+  return false;
 }