aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfgexpand.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-15 03:16:20 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-15 03:16:20 +0000
commit25cd19de2f36ed2fce8aa2e9b8903591352b77a3 (patch)
treeae7ea22ccec56e2435490449ff187f687695052d /gcc/cfgexpand.c
parentc87ac7e8f700f24e213a54f4f0f6852bdd392bf4 (diff)
downloadgcc-25cd19de2f36ed2fce8aa2e9b8903591352b77a3.zip
gcc-25cd19de2f36ed2fce8aa2e9b8903591352b77a3.tar.gz
gcc-25cd19de2f36ed2fce8aa2e9b8903591352b77a3.tar.bz2
cfgrtl.c (purge_all_dead_edge): Remove an unused argument.
* cfgrtl.c (purge_all_dead_edge): Remove an unused argument. * basic-block.h: Update the prototype for purge_all_dead_edges. * cfgexpand.c (tree_expand_cfg): Update a call to purge_all_dead_edges. * combine.c (combine_instructions): Likewise. * passes.c (rest_of_handle_old_regalloc, rest_of_handle_cse, rest_of_handle_cse2, rest_of_handle_gcse, rest_of_handle_postreload): likewise. From-SVN: r98168
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r--gcc/cfgexpand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c
index e339505..f7a2f1e 100644
--- a/gcc/cfgexpand.c
+++ b/gcc/cfgexpand.c
@@ -1320,7 +1320,7 @@ tree_expand_cfg (void)
blocks = sbitmap_alloc (last_basic_block);
sbitmap_ones (blocks);
find_many_sub_basic_blocks (blocks);
- purge_all_dead_edges (0);
+ purge_all_dead_edges ();
sbitmap_free (blocks);
compact_blocks ();