diff options
author | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-11 21:44:21 +0000 |
---|---|---|
committer | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-11 21:44:21 +0000 |
commit | b109aca9be07716c3a1562d9b706154c577e9e48 (patch) | |
tree | 2685a2294a1b0e4bec326a6361e1c23f754e39d4 /gcc/loop.h | |
parent | 0ed5c69752e2efeb7ca9ec5fa6ff7df9c2fcd079 (diff) | |
download | gcc-b109aca9be07716c3a1562d9b706154c577e9e48.tar.gz |
* unroll.c (iteration_info): Subsume into loop_iterations.
* loop.h (loop_info): New field iv.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36334 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.h')
-rw-r--r-- | gcc/loop.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/loop.h b/gcc/loop.h index 78939a1d1b9..addd6747ccf 100644 --- a/gcc/loop.h +++ b/gcc/loop.h @@ -216,6 +216,8 @@ struct loop_info /* The number of times the loop body was unrolled. */ unsigned int unroll_number; int used_count_register; + /* The loop iterator induction variable. */ + struct iv_class *iv; /* List of MEMs that are stored in this loop. */ rtx store_mems; /* Array of MEMs that are used (read or written) in this loop, but |