aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>2009-11-20 23:20:37 +0000
committeramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>2009-11-20 23:20:37 +0000
commitbabd5b0ed17097afc5a585aa74bfef7a5527c73e (patch)
tree79795cb72fc484d408be665621b434270cd061b5
parenta74b0c2f3b6936510b8cca49a78bdf907510d01a (diff)
loop-init.c (rtl_unroll_and_peel_loops): Fix spelling in last change.
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/ici-20091108-branch@154384 138bc75d-0d04-0410-961f-82ee72b054a4
-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);