c-common.h (c_dump_tree), [...]): Change return type from 'int' to 'bool'.
[gcc.git] / gcc / c-dump.c
index 541910b6b9d5df1bf8bab9f60a16df3b60fbe81e..7f3464b38a03d7d106fe9c1fb33a43284371bc10 100644 (file)
@@ -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;
 }