Minor whitespace changes
authorRichard Kenner <kenner@gcc.gnu.org>
Thu, 24 Jun 2004 22:42:26 +0000 (18:42 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Thu, 24 Jun 2004 22:42:26 +0000 (18:42 -0400)
From-SVN: r83613

gcc/cgraphunit.c

index 67001f0dd127f72294dbd336657c7c35bd67e7b1..7bfcf968556e3b9c4db088a106d6ec49c27c857c 100644 (file)
@@ -467,7 +467,9 @@ cgraph_create_edges (struct cgraph_node *node, tree body)
 
 static bool error_found;
 
-/* Callbrack of verify_cgraph_node.  Check that all call_exprs have cgraph nodes.  */
+/* Callbrack of verify_cgraph_node.  Check that all call_exprs have cgraph
+   nodes.  */
+
 static tree
 verify_cgraph_node_1 (tree *tp, int *walk_subtrees, void *data)
 {
@@ -501,12 +503,12 @@ verify_cgraph_node_1 (tree *tp, int *walk_subtrees, void *data)
          error_found = true;
        }
     }
+
   /* Save some cycles by not walking types and declaration as we
      won't find anything useful there anyway.  */
   if (DECL_P (*tp) || TYPE_P (*tp))
-    {
-      *walk_subtrees = 0;
-    }
+    *walk_subtrees = 0;
+
   return NULL_TREE;
 }