diff options
Diffstat (limited to 'gcc/tree-chrec.c')
-rw-r--r-- | gcc/tree-chrec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-chrec.c b/gcc/tree-chrec.c index 957f55d..d4b8168 100644 --- a/gcc/tree-chrec.c +++ b/gcc/tree-chrec.c @@ -218,7 +218,7 @@ chrec_fold_multiply_poly_poly (tree type, /* "2*b*d". */ chrec_fold_multiply - (type, build_int_cst (NULL_TREE, 2, 0), + (type, build_int_cst (NULL_TREE, 2), chrec_fold_multiply (type, CHREC_RIGHT (poly0), CHREC_RIGHT (poly1)))); } @@ -645,7 +645,7 @@ reset_evolution_in_loop (unsigned loop_num, && CHREC_VARIABLE (chrec) > loop_num) return build (TREE_CODE (chrec), - build_int_cst (NULL_TREE, CHREC_VARIABLE (chrec), 0), + build_int_cst (NULL_TREE, CHREC_VARIABLE (chrec)), reset_evolution_in_loop (loop_num, CHREC_LEFT (chrec), new_evol), reset_evolution_in_loop (loop_num, CHREC_RIGHT (chrec), new_evol)); |