diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-04 23:26:35 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-04 23:26:35 +0000 |
| commit | fe7d79c5a0697e7d2923a99dc2f489431dcaa062 (patch) | |
| tree | d977f1296ce4895bbfbae87036c39c55a775f536 | |
| parent | 749a971f5eb6ffa3d472432325e31c5d6d63be36 (diff) | |
| download | ppe42-gcc-fe7d79c5a0697e7d2923a99dc2f489431dcaa062.tar.gz ppe42-gcc-fe7d79c5a0697e7d2923a99dc2f489431dcaa062.zip | |
* passes.c (rest_of_compilation): Make it static.
* toplev.h: Remove the prototype for rest_of_compilation.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90091 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/passes.c | 2 | ||||
| -rw-r--r-- | gcc/toplev.h | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23d34015689..3173f0b2f2a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2004-11-04 Kazu Hirata <kazu@cs.umass.edu> + * passes.c (rest_of_compilation): Make it static. + * toplev.h: Remove the prototype for rest_of_compilation. + +2004-11-04 Kazu Hirata <kazu@cs.umass.edu> + * jump.c (cleanup_barriers): Use delete_insn instead of delete_barrier. (delete_barrier): Remove. diff --git a/gcc/passes.c b/gcc/passes.c index 5488981c013..1b656f312ac 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -1577,7 +1577,7 @@ rest_of_clean_state (void) We run a series of low-level passes here on the function's RTL representation. Each pass is called via a rest_of_* function. */ -void +static void rest_of_compilation (void) { /* Convert from NOTE_INSN_EH_REGION style notes, and do other diff --git a/gcc/toplev.h b/gcc/toplev.h index f0dfaa9eae6..a212972934d 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -75,7 +75,6 @@ extern void inform (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2); extern void rest_of_decl_compilation (tree, int, int); extern void rest_of_type_compilation (tree, int); -extern void rest_of_compilation (void); extern void tree_rest_of_compilation (tree); extern void init_tree_optimization_passes (void); extern void finish_optimization_passes (void); |

