diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-08 19:05:12 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-08 19:05:12 +0000 |
commit | 6058028632c72f1c62ea6e526127a33e2236e2a4 (patch) | |
tree | 1eb8e87ef523b4daeab8da23c4c959c966c36329 /gcc/flow.c | |
parent | 2f2b4a02c7e73283f22625c2e0b6831c80789f83 (diff) | |
download | gcc-6058028632c72f1c62ea6e526127a33e2236e2a4.zip gcc-6058028632c72f1c62ea6e526127a33e2236e2a4.tar.gz gcc-6058028632c72f1c62ea6e526127a33e2236e2a4.tar.bz2 |
flow.c (allocate_bb_life_data): Make it static.
* flow.c (allocate_bb_life_data): Make it static.
* basic-block.h: Remove the corresponding prototype.
From-SVN: r90282
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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; |