aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/loop-init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/loop-init.c b/gcc/loop-init.c
index 7d0f802a18d..fef1757c107 100644
--- a/gcc/loop-init.c
+++ b/gcc/loop-init.c
@@ -340,11 +340,11 @@ rtl_unroll_and_peel_loops (void)
"loop.flag_unroll_all_loops", EP_INT, &tmp_unroll_all_loops,
NULL);
- if (tmp_flag_peel_loops)
+ if (tmp_peel_loops)
flags |= UAP_PEEL;
- if (tmp_flag_unroll_loops)
+ if (tmp_unroll_loops)
flags |= UAP_UNROLL;
- if (tmp_flag_unroll_all_loops)
+ if (tmp_unroll_all_loops)
flags |= UAP_UNROLL_ALL;
unroll_and_peel_loops (flags);