diff options
Diffstat (limited to 'gcc/tree-ssa-loop.h')
-rw-r--r-- | gcc/tree-ssa-loop.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-loop.h b/gcc/tree-ssa-loop.h index 82799ff..dd8397d 100644 --- a/gcc/tree-ssa-loop.h +++ b/gcc/tree-ssa-loop.h @@ -22,14 +22,14 @@ along with GCC; see the file COPYING3. If not see /* Affine iv. */ -typedef struct affine_iv_d +struct affine_iv { /* Iv = BASE + STEP * i. */ tree base, step; /* True if this iv does not overflow. */ bool no_overflow; -} affine_iv; +}; /* Description of number of iterations of a loop. All the expressions inside the structure can be evaluated at the end of the loop's preheader |