diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-08 19:05:12 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-08 19:05:12 +0000 |
| commit | ceb1ab0db770e6b959aa4cf3b490c7cf63a8d8f3 (patch) | |
| tree | 1eb8e87ef523b4daeab8da23c4c959c966c36329 | |
| parent | 5ab297450d4695be0023e907a1ea55c1592d3c94 (diff) | |
| download | ppe42-gcc-ceb1ab0db770e6b959aa4cf3b490c7cf63a8d8f3.tar.gz ppe42-gcc-ceb1ab0db770e6b959aa4cf3b490c7cf63a8d8f3.zip | |
* flow.c (allocate_bb_life_data): Make it static.
* basic-block.h: Remove the corresponding prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90282 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/basic-block.h | 1 | ||||
| -rw-r--r-- | gcc/flow.c | 5 |
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 748e16b8c00..06b030dacc3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2004-11-08 Kazu Hirata <kazu@cs.umass.edu> + * flow.c (allocate_bb_life_data): Make it static. + * basic-block.h: Remove the corresponding prototype. + +2004-11-08 Kazu Hirata <kazu@cs.umass.edu> + * calls.c (split_complex_values, split_complex_types): Make them static. * expr.h: Remove the corresponding prototypes. diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 4775956b288..daa4b33fc22 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -745,7 +745,6 @@ extern basic_block debug_bb_n (int); extern void dump_regset (regset, FILE *); extern void debug_regset (regset); extern void allocate_reg_life_data (void); -extern void allocate_bb_life_data (void); extern void expunge_block (basic_block); extern void link_block (basic_block, basic_block); extern void unlink_block (basic_block); diff --git a/gcc/flow.c b/gcc/flow.c index de467718594..86587cc2edd 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -330,6 +330,7 @@ static int invalidate_mems_from_autoinc (rtx *, void *); static void invalidate_mems_from_set (struct propagate_block_info *, rtx); static void clear_log_links (sbitmap); static int count_or_remove_death_notes_bb (basic_block, int); +static void allocate_bb_life_data (void); /* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK note associated with the BLOCK. */ @@ -1402,9 +1403,9 @@ initialize_uninitialized_subregs (void) /* Subroutines of life analysis. */ /* Allocate the permanent data structures that represent the results - of life analysis. Not static since used also for stupid life analysis. */ + of life analysis. */ -void +static void allocate_bb_life_data (void) { basic_block bb; |

