diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 19:21:29 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 19:21:29 +0000 |
commit | d99189988cef3ef167b925aa697c3e2db2bcc23e (patch) | |
tree | aab431a62d07bcf7a388163b0eda65661f1db3b5 /gcc/loop-iv.c | |
parent | 3f0895d3678c25b46c25f797ddb1fa7853ebf931 (diff) | |
download | gcc-d99189988cef3ef167b925aa697c3e2db2bcc23e.tar.gz |
* loop-iv.c (iv_number_of_iterations): Make it static.
* cfgloop.h: Remove the corresponding prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90358 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop-iv.c')
-rw-r--r-- | gcc/loop-iv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop-iv.c b/gcc/loop-iv.c index 7105aaddcbc..ed0defb70f7 100644 --- a/gcc/loop-iv.c +++ b/gcc/loop-iv.c @@ -2006,7 +2006,7 @@ canonicalize_iv_subregs (struct rtx_iv *iv0, struct rtx_iv *iv1, the result into DESC. Very similar to determine_number_of_iterations (basically its rtl version), complicated by things like subregs. */ -void +static void iv_number_of_iterations (struct loop *loop, rtx insn, rtx condition, struct niter_desc *desc) { |