diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-18 15:04:37 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-18 15:04:37 +0000 |
commit | c2d7bf848390891f6e9ce789cb136a349de5dd64 (patch) | |
tree | 8614c77c5f8708b1fc8aa161a3b5a9067bf870c8 /gcc | |
parent | 7f80955e8a0adbd181d678243520cd28e2d9803a (diff) | |
download | gcc-c2d7bf848390891f6e9ce789cb136a349de5dd64.tar.gz |
* reg-stack.c (reg_to_stack): Make it static.
* rtl.h: Remove the prototype for reg_to_stack.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109890 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/reg-stack.c | 2 | ||||
-rw-r--r-- | gcc/rtl.h | 3 |
3 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 72c32564629..71df6daab59 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -10,6 +10,9 @@ * postreload-gcse.c (gcse_after_reload_main): Make it static. * rtl.h: Remove the prototype for gcse_after_reload_main. + * reg-stack.c (reg_to_stack): Make it static. + * rtl.h: Remove the prototype for reg_to_stack. + 2006-01-18 Eric Botcazou <ebotcazou@adacore.com> * config/alpha/alpha.c (alpha_split_tfmode_pair): Rename into diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 2811a6b7d60..fc59118d5e7 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -3023,7 +3023,7 @@ convert_regs (FILE *file) code duplication created when the converter inserts pop insns on the edges. */ -bool +static bool reg_to_stack (FILE *file) { basic_block bb; diff --git a/gcc/rtl.h b/gcc/rtl.h index 0edff2425e8..c70c017e6c2 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -2075,9 +2075,6 @@ extern void dump_local_alloc (FILE *); /* In reload1.c */ extern int function_invariant_p (rtx); -/* In reg-stack.c */ -extern bool reg_to_stack (FILE *); - /* In calls.c */ enum libcall_type { |