Commit e96d7dd7 by Joern Rennecke Committed by Joern Rennecke

tree-loop-distribution.c (distribute_loop): Fix declaration and initialization…

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
parent fb0553d1
2010-01-23 Joern Rennecke <amylaar@spamcop.net>
* tree-loop-distribution.c (distribute_loop): Fix declaration and
initialization of variable res to agree with return type.
2010-01-22 Steve Ellcey <sje@cup.hp.com> 2010-01-22 Steve Ellcey <sje@cup.hp.com>
* Makefile.in (tree-sra.o): Add $(EXPR_H) dependency. * Makefile.in (tree-sra.o): Add $(EXPR_H) dependency.
......
...@@ -1120,7 +1120,7 @@ ldist_gen (struct loop *loop, struct graph *rdg, ...@@ -1120,7 +1120,7 @@ ldist_gen (struct loop *loop, struct graph *rdg,
static int static int
distribute_loop (struct loop *loop, VEC (gimple, heap) *stmts) distribute_loop (struct loop *loop, VEC (gimple, heap) *stmts)
{ {
bool res = false; int res = 0;
struct graph *rdg; struct graph *rdg;
gimple s; gimple s;
unsigned i; unsigned i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment