Commit 1984d2e8 by Ian Lance Taylor Committed by Ian Lance Taylor

loop-doloop.c (doloop_modify): Use GEN_INT to pass an rtx rather than a…

loop-doloop.c (doloop_modify): Use GEN_INT to pass an rtx rather than a HOST_WIDEST_INT to gen_doloop_begin.

	* loop-doloop.c (doloop_modify): Use GEN_INT to pass an rtx rather
	than a HOST_WIDEST_INT to gen_doloop_begin.

From-SVN: r104234
parent 5681f1ab
2005-09-13 Ian Lance Taylor <ian@airs.com>
* loop-doloop.c (doloop_modify): Use GEN_INT to pass an rtx rather
than a HOST_WIDEST_INT to gen_doloop_begin.
2005-09-13 Diego Novillo <dnovillo@redhat.com>
* tree-dfa.c (dump_variable): Guard against NULL annotations.
......
......@@ -396,7 +396,7 @@ doloop_modify (struct loop *loop, struct niter_desc *desc,
unsigned level = get_loop_level (loop) + 1;
init = gen_doloop_begin (counter_reg,
desc->const_iter ? desc->niter_expr : const0_rtx,
desc->niter_max,
GEN_INT (desc->niter_max),
GEN_INT (level));
if (init)
{
......
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