diff options
author | Martin Jambor <mjambor@suse.cz> | 2008-09-23 15:08:15 +0200 |
---|---|---|
committer | Martin Jambor <jamborm@gcc.gnu.org> | 2008-09-23 15:08:15 +0200 |
commit | 5c0466b537af28f3cf7aff8d29c884a3c5725459 (patch) | |
tree | 713f8a64e6ccf7e7bfd5473edd43495fd7cb70d1 /gcc/gimple.h | |
parent | 4a2095e27167b9b55ff84ad4121dfbc4f7342c9f (diff) | |
download | gcc-5c0466b537af28f3cf7aff8d29c884a3c5725459.tar.gz |
cgraph.c (cgraph_free_edge): Use sizeof(*e).
2008-09-23 Martin Jambor <mjambor@suse.cz>
* cgraph.c (cgraph_free_edge): Use sizeof(*e).
(cgraph_node_remove_callees): New temporary f. Hold the next item
in f when looping.
(cgraph_node_remove_callers): Likewise.
* ipa-prop.c (ipa_edge_removal_hook): Use ATTRIBUTE_UNUSED.
(ipa_node_removal_hook): Likewise.
* doc/gimple.texi (gimple_copy_call_skip_args): Changed to
gimple_call_copy_skip_args and moved to the gimple_call section.
* gimple.c (gimple_copy_call_skip_args): Renamed to
gimple_call_copy_skip_args. Changed al users.
From-SVN: r140590
Diffstat (limited to 'gcc/gimple.h')
-rw-r--r-- | gcc/gimple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h index 85fc75e0a52..a390590d705 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -4479,7 +4479,7 @@ basic_block gsi_insert_on_edge_immediate (edge, gimple); basic_block gsi_insert_seq_on_edge_immediate (edge, gimple_seq); void gsi_commit_one_edge_insert (edge, basic_block *); void gsi_commit_edge_inserts (void); -gimple gimple_copy_call_skip_args (gimple, bitmap); +gimple gimple_call_copy_skip_args (gimple, bitmap); /* Convenience routines to walk all statements of a gimple function. |