diff options
author | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-10-21 15:17:12 +0000 |
---|---|---|
committer | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-10-21 15:17:12 +0000 |
commit | f7b51129d8a7b6c188e9cf801f7dd8e2bd06c2a3 (patch) | |
tree | d97aa618a7b800cfd54f614af5d144b8805bd39a /gcc/loop-init.c | |
parent | aa63559354d6944bc5eb879ed4fc9b3eee2ec99e (diff) |
2014-10-21 Andrew MacLeod <amacleod@redhat.com>
* cfg.h: New. Header file for cfg.c.
* cfganal.h: New. Header file for cfganal.c.
* lcm.h: New. Header file for lcm.c.
* loop-unroll.h: New. Header file for loop-unroll.h.
* cfgloop.h: (unroll_loops): Remove prototype.
* basic-block.h: Move prototypes and structs to new header files.
Include cfg.h, cfganal.h, and lcm.h.
* loop-init.c: Include loop-unroll.h.
* loop-unroll.c: (referenced_in_one_insn_in_loop_p): Make static.
* modulo-sched.c: Include loop-unroll.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@216518 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop-init.c')
-rw-r--r-- | gcc/loop-init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/loop-init.c b/gcc/loop-init.c index 8a42650f63af..767b8ac58d60 100644 --- a/gcc/loop-init.c +++ b/gcc/loop-init.c @@ -32,6 +32,7 @@ along with GCC; see the file COPYING3. If not see #include "df.h" #include "ggc.h" #include "tree-ssa-loop-niter.h" +#include "loop-unroll.h" /* Apply FLAGS to the loop state. */ |