diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-28 00:30:31 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-28 00:30:31 +0000 |
commit | 9140e457bad848392137faee369e102bfae7e012 (patch) | |
tree | 1bf05e7aec3517a89d71382e39dbbc8e0fecfab2 /gcc/cfgrtl.c | |
parent | d3ca703efa59ff4befeb4393e72058c658ba2d75 (diff) | |
download | gcc-9140e457bad848392137faee369e102bfae7e012.tar.gz |
* c-format.c (check_format_string, get_constant)
* cfgrtl.c (rtl_split_edge):
Mark the definition static, matching the forward declaration.
cp:
* decl.c (build_typename_type)
* mangle.c (write_template_template_arg)
* parser.c (cp_parser_scope_through_which_access_occurs)
* pt.c (push_access_scope_real, push_access_scope, pop_access_scope)
* repo.c (get_base_filename)
* semantics.c (maybe_convert_cond):
Mark the definition static, matching the forward declaration.
java:
* class.c (build_method_symbols_entry)
* expr.c (get_offset_table_index)
* jcf-parse.c (jcf_parse):
Mark the definition static, matching the forward declaration.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68622 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index a08d29f3da9..af13138f0b4 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -1200,7 +1200,7 @@ back_edge_of_syntactic_loop_p (basic_block bb1, basic_block bb2) The case of a block ending in an unconditional jump to a block with multiple predecessors is not handled optimally. */ -basic_block +static basic_block rtl_split_edge (edge edge_in) { basic_block bb; |