diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-07 13:52:09 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-07 13:52:09 +0000 |
commit | 3d5df0d14549d28ddd2443cd2ee706956dac92c2 (patch) | |
tree | 0e6606b0487fd55d06f8332075ef3a25eaf2881c | |
parent | 56d727be93428e4cca9adcc0092c4be17c5a7655 (diff) | |
download | gcc-3d5df0d14549d28ddd2443cd2ee706956dac92c2.tar.gz |
* recog.c (verify_changes): Make it static.
* recog.h: Remove the corresponding prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96015 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/recog.c | 2 | ||||
-rw-r--r-- | gcc/recog.h | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c8464642cac..492366e9aa5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -13,6 +13,9 @@ reload_inheritance_insn, reload_override_in, 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> * config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv. diff --git a/gcc/recog.c b/gcc/recog.c index 224df47cf8c..d81ae5b3adc 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -297,7 +297,7 @@ num_changes_pending (void) /* Tentatively apply the changes numbered NUM and up. Return 1 if all changes are valid, zero otherwise. */ -int +static int verify_changes (int num) { int i; diff --git a/gcc/recog.h b/gcc/recog.h index d4ded6cccc0..e6222a50cd3 100644 --- a/gcc/recog.h +++ b/gcc/recog.h @@ -75,7 +75,6 @@ extern int check_asm_operands (rtx); extern int asm_operand_ok (rtx, const char *); extern int validate_change (rtx, rtx *, rtx, int); extern int insn_invalid_p (rtx); -extern int verify_changes (int); extern void confirm_change_group (void); extern int apply_change_group (void); extern int num_validated_changes (void); |