loop-iv: make find_simple_exit static
authorRoman Zhuykov <zhroma@ispras.ru>
Tue, 10 Mar 2020 16:54:50 +0000 (19:54 +0300)
committerRoman Zhuykov <zhroma@ispras.ru>
Tue, 10 Mar 2020 16:54:50 +0000 (19:54 +0300)
Function 'find_simple_exit' is used only from loop-iv.c
In 2004-2006 it was also used in predict.c, but since r118694
(992c31e62304ed5d34247dbdef2db276d08fac05) it does not.

gcc/ChangeLog:
* loop-iv.c (find_simple_exit): Make it static.
* cfgloop.h: Remove the corresponding prototype.

gcc/ChangeLog
gcc/cfgloop.h
gcc/loop-iv.c

index ca90147c3e1f7a25d91fac3c1aadc030cde2821b..c78d01aa2d77dd7029f14b5cf17e18d8193f557e 100644 (file)
@@ -1,3 +1,8 @@
+2020-03-10  Roman Zhuykov  <zhroma@ispras.ru>
+
+       * loop-iv.c (find_simple_exit): Make it static.
+       * cfgloop.h: Remove the corresponding prototype.
+
 2020-03-10  Roman Zhuykov  <zhroma@ispras.ru>
 
        * ddg.c (create_ddg): Fix intendation.
index 11378cadd41c8721e16e6169f8a881971e9f6654..1c49a8b8c2d86ed95e769222005f2665e625bb7c 100644 (file)
@@ -499,7 +499,6 @@ extern bool iv_analyze_expr (rtx_insn *, scalar_int_mode, rtx,
                             class rtx_iv *);
 extern rtx get_iv_value (class rtx_iv *, rtx);
 extern bool biv_p (rtx_insn *, scalar_int_mode, rtx);
-extern void find_simple_exit (class loop *, class niter_desc *);
 extern void iv_analysis_done (void);
 
 extern class niter_desc *get_simple_loop_desc (class loop *loop);
index 6a59954f60a0e95959f01bb72bf736e87d8a7d5d..d7b3d90f047448f2976bdb0f0c6dde7d62b35467 100644 (file)
@@ -2915,7 +2915,7 @@ check_simple_exit (class loop *loop, edge e, class niter_desc *desc)
 
 /* Finds a simple exit of LOOP and stores its description into DESC.  */
 
-void
+static void
 find_simple_exit (class loop *loop, class niter_desc *desc)
 {
   unsigned i;