diff options
| author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-10 11:38:12 +0000 |
|---|---|---|
| committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-10 11:38:12 +0000 |
| commit | fd00232c9d1230426a027d1681ceda27fad9e5b7 (patch) | |
| tree | ee8b233694db30f6f631a5587485d27b09ae5b08 /gcc/rtl.h | |
| parent | b4f55691363705baac7a799a707a68fd280ee54e (diff) | |
| download | ppe42-gcc-fd00232c9d1230426a027d1681ceda27fad9e5b7.tar.gz ppe42-gcc-fd00232c9d1230426a027d1681ceda27fad9e5b7.zip | |
* rtl.h (schedule_insns, schedule_ebbs, fix_sched_param,
gen_lowpart_SUBREG): Move under the file in which they
are actually declared.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77597 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
| -rw-r--r-- | gcc/rtl.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 05ad03d2f27..03024667bb5 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1892,8 +1892,6 @@ extern rtx gen_rtx_REG (enum machine_mode, unsigned); extern rtx gen_rtx_SUBREG (enum machine_mode, rtx, int); extern rtx gen_rtx_MEM (enum machine_mode, rtx); -extern rtx gen_lowpart_SUBREG (enum machine_mode, rtx); - /* We need the cast here to ensure that we get the same result both with and without prototypes. */ #define GEN_INT(N) gen_rtx_CONST_INT (VOIDmode, (HOST_WIDE_INT) (N)) @@ -2103,6 +2101,7 @@ extern void delete_insn_chain (rtx, rtx); extern rtx unlink_insn_chain (rtx, rtx); extern rtx delete_insn_and_edges (rtx); extern void delete_insn_chain_and_edges (rtx, rtx); +extern rtx gen_lowpart_SUBREG (enum machine_mode, rtx); /* In combine.c */ extern int combine_instructions (rtx, unsigned int); @@ -2115,11 +2114,17 @@ extern void dump_combine_total_stats (FILE *); /* In web.c */ extern void web_main (void); -/* In sched.c. */ +/* In sched-rgn.c. */ #ifdef BUFSIZ extern void schedule_insns (FILE *); +#endif + +/* In sched-ebb.c. */ +#ifdef BUFSIZ extern void schedule_ebbs (FILE *); #endif + +/* In haifa-sched.c. */ extern void fix_sched_param (const char *, const char *); /* In print-rtl.c */ |

