diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 2004-06-24 18:42:26 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2004-06-24 18:42:26 -0400 |
commit | 7120d046258a99e63278d0cd3c7f649259c3ef57 (patch) | |
tree | 52770be4297815bce0b29a19963a6386e64aecfa /gcc | |
parent | 2be480afc8ad19a2d0331502be0e73cde57ee09b (diff) | |
download | gcc-7120d046258a99e63278d0cd3c7f649259c3ef57.zip gcc-7120d046258a99e63278d0cd3c7f649259c3ef57.tar.gz gcc-7120d046258a99e63278d0cd3c7f649259c3ef57.tar.bz2 |
Minor whitespace changes
From-SVN: r83613
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cgraphunit.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 67001f0..7bfcf96 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -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; } |