diff options
author | Richard Guenther <rguenther@suse.de> | 2012-03-29 13:54:16 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-03-29 13:54:16 +0000 |
commit | 711417cd3bb019698cca3f19af53deaff00b4b63 (patch) | |
tree | 8c4bc366977cd86d3613a3d1f2e4e63e47551318 /gcc/cse.c | |
parent | a1ecc15c2130165320af7555339eba5438116e38 (diff) | |
download | gcc-711417cd3bb019698cca3f19af53deaff00b4b63.zip gcc-711417cd3bb019698cca3f19af53deaff00b4b63.tar.gz gcc-711417cd3bb019698cca3f19af53deaff00b4b63.tar.bz2 |
cgraph.h (cgraph_materialize_all_clones): Remove.
2012-03-29 Richard Guenther <rguenther@suse.de>
* cgraph.h (cgraph_materialize_all_clones): Remove.
(reset_inline_failed): Likewise.
* cgraphunit.c (cgraph_materialize_all_clones): Make static.
* cgraphbuild.c (reset_inline_failed): Remove.
* rtl.h (cse_main): Remove.
(extended_count): Likewise.
* cse.c (dump_class): Mark as DEBUG_FUNCTION.
(cse_main): Make static.
* combine.c (extended_count): Remove.
(dump_combine_stats): Mark as DEBUG_FUNCTION.
* basic-block.h (reorder_basic_blocks): Remove.
* bb-reorder.c (reorder_basic_blocks): Make static.
* Makefile.in (dse.o): Remove dse.h dependency.
* dse.h: Remove.
* dse.c (gate_dse): Remove.
(clear_alias_mode_eq): Likewise.
(clear_alias_mode_hash): Likewise.
(dse_record_singleton_alias_set): Likewise.
(dse_invalidate_singleton_alias_set): Likewise.
From-SVN: r185962
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -653,7 +653,7 @@ fixed_base_plus_p (rtx x) /* Dump the expressions in the equivalence class indicated by CLASSP. This function is used only for debugging. */ -void +DEBUG_FUNCTION void dump_class (struct table_elt *classp) { struct table_elt *elt; @@ -6519,7 +6519,7 @@ cse_extended_basic_block (struct cse_basic_block_data *ebb_data) Return 1 if the CFG should be cleaned up because it has been modified. Return 0 otherwise. */ -int +static int cse_main (rtx f ATTRIBUTE_UNUSED, int nregs) { struct cse_basic_block_data ebb_data; |