diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a41808c2e48a..ef164be76618 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-02-25 Zdenek Dvorak + + PR tree-optimization/19937 + * tree-ssa-loop-ivopts.c (rewrite_use_compare): Cast the final value + to the type of the induction variable. + 2005-02-25 Kaz Kojima PR rtl-optimization/20117 diff --git a/gcc/tree-ssa-loop-ivopts.c b/gcc/tree-ssa-loop-ivopts.c index 8b069d058d7a..b1636a7ffe99 100644 --- a/gcc/tree-ssa-loop-ivopts.c +++ b/gcc/tree-ssa-loop-ivopts.c @@ -4878,15 +4878,17 @@ rewrite_use_compare (struct ivopts_data *data, if (may_eliminate_iv (data, use, cand, &compare, &bound)) { + tree var = var_at_stmt (data->current_loop, cand, use->stmt); + tree var_type = TREE_TYPE (var); + + bound = fold_convert (var_type, bound); op = force_gimple_operand (unshare_expr (bound), &stmts, true, NULL_TREE); if (stmts) bsi_insert_before (&bsi, stmts, BSI_SAME_STMT); - *use->op_p = build2 (compare, boolean_type_node, - var_at_stmt (data->current_loop, - cand, use->stmt), op); + *use->op_p = build2 (compare, boolean_type_node, var, op); modify_stmt (use->stmt); return; }