diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-01 10:47:19 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-01 10:47:19 +0000 |
commit | cd89b631eed9aaa2e9fa3cfd57465d643e7020f2 (patch) | |
tree | b23931935b06d50c7e90836e0bb5b5a36e407e24 /gcc/tree-ssa-loop-ivcanon.c | |
parent | 951019127b9f3cf59989ceb74539d454d535d3b5 (diff) | |
download | gcc-cd89b631eed9aaa2e9fa3cfd57465d643e7020f2.tar.gz |
Post-merge build fix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@209976 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-loop-ivcanon.c')
-rw-r--r-- | gcc/tree-ssa-loop-ivcanon.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-ivcanon.c b/gcc/tree-ssa-loop-ivcanon.c index 6b5a4eb5d00..e9a9cfbd1fe 100644 --- a/gcc/tree-ssa-loop-ivcanon.c +++ b/gcc/tree-ssa-loop-ivcanon.c @@ -685,7 +685,10 @@ try_unroll_loop_completely (struct loop *loop, /* We do not know the number of iterations and thus we can not eliminate the EXIT edge. */ else - exit = NULL; + { + n_unroll = 0; + exit = NULL; + } /* See if we can improve our estimate by using recorded loop bounds. */ if (maxiter >= 0 |