diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-01-16 13:48:15 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-01-16 13:48:15 +0000 |
commit | 8c215327bb78691d73752d47ead5057aa6042ef4 (patch) | |
tree | 84dcb1876e4adb6cbcaef06504785f29035a2706 | |
parent | 3f2ec06a70b07a1088921e3e8144c39177b98517 (diff) | |
download | gcc-8c215327bb78691d73752d47ead5057aa6042ef4.zip gcc-8c215327bb78691d73752d47ead5057aa6042ef4.tar.gz gcc-8c215327bb78691d73752d47ead5057aa6042ef4.tar.bz2 |
combine.c (combine_instructions): Make it static.
* combine.c (combine_instructions): Make it static.
* rtl.h: Remove the prototype for combine_instructions.
From-SVN: r109746
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/combine.c | 2 | ||||
-rw-r--r-- | gcc/rtl.h | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5f39173..e4c1b1b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -3,6 +3,9 @@ * cse.c (cse_condition_code_reg): Make it static. * rtl.h: Remove the prototype for cse_condition_code_reg. + * combine.c (combine_instructions): Make it static. + * rtl.h: Remove the prototype for combine_instructions. + 2006-01-15 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> PR target/25168 diff --git a/gcc/combine.c b/gcc/combine.c index 3b1fd77..16bb99c 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -685,7 +685,7 @@ combine_validate_cost (rtx i1, rtx i2, rtx i3, rtx newpat, rtx newi2pat) Return nonzero if the combiner has turned an indirect jump instruction into a direct jump. */ -int +static int combine_instructions (rtx f, unsigned int nregs) { rtx insn, next; @@ -1971,7 +1971,6 @@ extern bool validate_subreg (enum machine_mode, enum machine_mode, rtx, unsigned int); /* In combine.c */ -extern int combine_instructions (rtx, unsigned int); extern unsigned int extended_count (rtx, enum machine_mode, int); extern rtx remove_death (unsigned int, rtx); extern void dump_combine_stats (FILE *); |