diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-04 23:26:35 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-04 23:26:35 +0000 |
commit | 73dcf3b5bb759d2943170d88823552e638313140 (patch) | |
tree | d977f1296ce4895bbfbae87036c39c55a775f536 /gcc/passes.c | |
parent | f014fc47071eec34827a633d8f6e91743264db56 (diff) | |
download | gcc-73dcf3b5bb759d2943170d88823552e638313140.zip gcc-73dcf3b5bb759d2943170d88823552e638313140.tar.gz gcc-73dcf3b5bb759d2943170d88823552e638313140.tar.bz2 |
passes.c (rest_of_compilation): Make it static.
* passes.c (rest_of_compilation): Make it static.
* toplev.h: Remove the prototype for rest_of_compilation.
From-SVN: r90091
Diffstat (limited to 'gcc/passes.c')
-rw-r--r-- | gcc/passes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/passes.c b/gcc/passes.c index 5488981..1b656f3 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 |