diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-01-28 15:17:22 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-01-28 15:17:22 +0000 |
commit | e94aab95ee93fd7c5f31ad1ec5aecdb9c3c97453 (patch) | |
tree | ccb07d8494f4e0b91b6e0912e0bd9b28a0a1f97f /gcc/recog.c | |
parent | 2bbdec73940051f8883010741c58676241b855bd (diff) | |
download | gcc-e94aab95ee93fd7c5f31ad1ec5aecdb9c3c97453.tar.gz |
recog.c (peephole2_optimize): Make it static.
* recog.c (peephole2_optimize): Make it static.
* recog.h: Remove the prototype for peephole2_optimize.
From-SVN: r110327
Diffstat (limited to 'gcc/recog.c')
-rw-r--r-- | gcc/recog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/recog.c b/gcc/recog.c index 50f8de6b0f7..25e143bce4c 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -3033,7 +3033,7 @@ peep2_find_free_register (int from, int to, const char *class_str, /* Perform the peephole2 optimization pass. */ -void +static void peephole2_optimize (FILE *dump_file ATTRIBUTE_UNUSED) { rtx insn, prev; |