mirror of git://gcc.gnu.org/git/gcc.git
postreload.c (reload_cse_regs): Make static.
* postreload.c (reload_cse_regs): Make static. * reload.h (reload_cse_regs): Remove prototype. From-SVN: r187258
This commit is contained in:
parent
527eeee5b3
commit
8bb91f498b
|
@ -1,3 +1,8 @@
|
|||
2012-05-07 Steven Bosscher <steven@gcc.gnu.org>
|
||||
|
||||
* postreload.c (reload_cse_regs): Make static.
|
||||
* reload.h (reload_cse_regs): Remove prototype.
|
||||
|
||||
2012-05-07 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* config/alpha/alpha.md (clear_cache): New pattern.
|
||||
|
|
|
@ -64,7 +64,8 @@ static void move2add_note_store (rtx, const_rtx, void *);
|
|||
|
||||
/* Call cse / combine like post-reload optimization phases.
|
||||
FIRST is the first instruction. */
|
||||
void
|
||||
|
||||
static void
|
||||
reload_cse_regs (rtx first ATTRIBUTE_UNUSED)
|
||||
{
|
||||
bool moves_converted;
|
||||
|
|
|
@ -411,9 +411,6 @@ extern int push_reload (rtx, rtx, rtx *, rtx *, enum reg_class,
|
|||
enum machine_mode, enum machine_mode,
|
||||
int, int, int, enum reload_type);
|
||||
|
||||
/* Functions in postreload.c: */
|
||||
extern void reload_cse_regs (rtx);
|
||||
|
||||
/* Functions in reload1.c: */
|
||||
|
||||
/* Initialize the reload pass once per compilation. */
|
||||
|
|
Loading…
Reference in New Issue