diff options
author | Bernd Schmidt <bernds@gcc.gnu.org> | 2013-11-19 12:39:06 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@gcc.gnu.org> | 2013-11-19 12:39:06 +0000 |
commit | b4d05578efc40cd1eaa1370d1bba58029c545ea0 (patch) | |
tree | b8cd2857f4c323efd8c210cca9bb665614a2dff8 /gcc/cgraph.h | |
parent | d8a2d370dc8e418c97cfacbef66a86ab444e94d2 (diff) | |
download | gcc-b4d05578efc40cd1eaa1370d1bba58029c545ea0.zip gcc-b4d05578efc40cd1eaa1370d1bba58029c545ea0.tar.gz gcc-b4d05578efc40cd1eaa1370d1bba58029c545ea0.tar.bz2 |
Small cleanups in cgraph.
* cgraphunit.c (symtab_terminator): New variable.
(queued_nodes): Renamed from first. Use symtab_terminator as
initializer.
(analyze_functions): Adjust accordingly.
(cgraph_process_new_functions): Return void.
* cgraph.h (cgraph_process_new_functions): Adjust declaration.
From-SVN: r205024
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 651f34e..4acf2d0 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -743,7 +743,7 @@ void cgraph_finalize_function (tree, bool); void finalize_compilation_unit (void); void compile (void); void init_cgraph (void); -bool cgraph_process_new_functions (void); +void cgraph_process_new_functions (void); void cgraph_process_same_body_aliases (void); void fixup_same_cpp_alias_visibility (symtab_node *, symtab_node *target, tree); /* Initialize datastructures so DECL is a function in lowered gimple form. |