diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-05 05:54:09 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-05 05:54:09 +0000 |
commit | 0d50f0b7194eaa4ce3b2b4d2a05d4422e79352b7 (patch) | |
tree | 1fc8fc8a6a49754c767b4d792fee043b740268fe /gcc/reload.h | |
parent | b278167b14b47cf9d4dfa1e94a545fcc687ec9d2 (diff) | |
download | gcc-0d50f0b7194eaa4ce3b2b4d2a05d4422e79352b7.tar.gz |
* reload.c (push_reload): Export.
* reload.h (push_reload): Declare it.
* config/alpha/alpha.h (LEGITIMIZE_ADDRESS): Move out o' line.
(LEGITIMIZE_RELOAD_ADDRESS): Likewise.
* config/alpha/alpha.c (alpha_legitimize_address): New.
(alpha_legitimize_reload_address): Likewise.
* config/alpha/alpha-protos.h: Declare them.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45392 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reload.h')
-rw-r--r-- | gcc/reload.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/reload.h b/gcc/reload.h index d9f73e11ac6..edb458b902d 100644 --- a/gcc/reload.h +++ b/gcc/reload.h @@ -331,7 +331,12 @@ extern int regno_clobbered_p PARAMS ((unsigned int, rtx, enum machine_mode, int)); /* Return 1 if X is an operand of an insn that is being earlyclobbered. */ -int earlyclobber_operand_p PARAMS ((rtx)); +extern int earlyclobber_operand_p PARAMS ((rtx)); + +/* Record one reload that needs to be performed. */ +extern int push_reload PARAMS ((rtx, rtx, rtx *, rtx *, enum reg_class, + enum machine_mode, enum machine_mode, + int, int, int, enum reload_type)); /* Functions in reload1.c: */ |