diff options
author | Joern Rennecke <amylaar@spamcop.net> | 2010-01-23 12:21:15 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 2010-01-23 12:21:15 +0000 |
commit | e96d7dd79ffae0fe785a360396025ab278e672a1 (patch) | |
tree | 2506922a73633d267833fdbe7863dd0a6507d87b /gcc/tree-loop-distribution.c | |
parent | fb0553d11d150cc0d88d258d263395120ef33c53 (diff) | |
download | gcc-e96d7dd79ffae0fe785a360396025ab278e672a1.zip gcc-e96d7dd79ffae0fe785a360396025ab278e672a1.tar.gz gcc-e96d7dd79ffae0fe785a360396025ab278e672a1.tar.bz2 |
tree-loop-distribution.c (distribute_loop): Fix declaration and initialization of variable res to agree with return type.
* tree-loop-distribution.c (distribute_loop): Fix declaration and
initialization of variable res to agree with return type.
From-SVN: r156190
Diffstat (limited to 'gcc/tree-loop-distribution.c')
-rw-r--r-- | gcc/tree-loop-distribution.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-loop-distribution.c b/gcc/tree-loop-distribution.c index ea3005e..13ac7ea 100644 --- a/gcc/tree-loop-distribution.c +++ b/gcc/tree-loop-distribution.c @@ -1120,7 +1120,7 @@ ldist_gen (struct loop *loop, struct graph *rdg, static int distribute_loop (struct loop *loop, VEC (gimple, heap) *stmts) { - bool res = false; + int res = 0; struct graph *rdg; gimple s; unsigned i; |