Commit 6db31844 by Kazu Hirata Committed by Kazu Hirata

recog.c (verify_changes): Make it static.

	* recog.c (verify_changes): Make it static.
	* recog.h: Remove the corresponding prototype.

From-SVN: r96015
parent cf0fa607
...@@ -13,6 +13,9 @@ ...@@ -13,6 +13,9 @@
reload_inheritance_insn, reload_override_in, reload_inheritance_insn, reload_override_in,
reload_spill_index): Make them static. reload_spill_index): Make them static.
* recog.c (verify_changes): Make it static.
* recog.h: Remove the corresponding prototype.
2005-03-07 David Billinghurst <David.Billinghurst@riotinto.com> 2005-03-07 David Billinghurst <David.Billinghurst@riotinto.com>
* config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv. * config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv.
......
...@@ -297,7 +297,7 @@ num_changes_pending (void) ...@@ -297,7 +297,7 @@ num_changes_pending (void)
/* Tentatively apply the changes numbered NUM and up. /* Tentatively apply the changes numbered NUM and up.
Return 1 if all changes are valid, zero otherwise. */ Return 1 if all changes are valid, zero otherwise. */
int static int
verify_changes (int num) verify_changes (int num)
{ {
int i; int i;
......
...@@ -75,7 +75,6 @@ extern int check_asm_operands (rtx); ...@@ -75,7 +75,6 @@ extern int check_asm_operands (rtx);
extern int asm_operand_ok (rtx, const char *); extern int asm_operand_ok (rtx, const char *);
extern int validate_change (rtx, rtx *, rtx, int); extern int validate_change (rtx, rtx *, rtx, int);
extern int insn_invalid_p (rtx); extern int insn_invalid_p (rtx);
extern int verify_changes (int);
extern void confirm_change_group (void); extern void confirm_change_group (void);
extern int apply_change_group (void); extern int apply_change_group (void);
extern int num_validated_changes (void); extern int num_validated_changes (void);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment