diff options
Diffstat (limited to 'gcc/tree-chrec.c')
-rw-r--r-- | gcc/tree-chrec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-chrec.c b/gcc/tree-chrec.c index a87da689262..649c9fe61a7 100644 --- a/gcc/tree-chrec.c +++ b/gcc/tree-chrec.c @@ -1173,7 +1173,7 @@ nb_vars_in_chrec (tree chrec) bool convert_affine_scev (struct loop *loop, tree type, - tree *base, tree *step, gimple at_stmt, + tree *base, tree *step, gimple *at_stmt, bool use_overflow_semantics) { tree ct = TREE_TYPE (*step); @@ -1274,7 +1274,7 @@ convert_affine_scev (struct loop *loop, tree type, The increment for a pointer type is always sizetype. */ tree -chrec_convert_rhs (tree type, tree chrec, gimple at_stmt) +chrec_convert_rhs (tree type, tree chrec, gimple *at_stmt) { if (POINTER_TYPE_P (type)) type = sizetype; @@ -1295,7 +1295,7 @@ chrec_convert_rhs (tree type, tree chrec, gimple at_stmt) tests, but also to enforce that the result follows them. */ static tree -chrec_convert_1 (tree type, tree chrec, gimple at_stmt, +chrec_convert_1 (tree type, tree chrec, gimple *at_stmt, bool use_overflow_semantics) { tree ct, res; @@ -1402,7 +1402,7 @@ keep_cast: tests, but also to enforce that the result follows them. */ tree -chrec_convert (tree type, tree chrec, gimple at_stmt, +chrec_convert (tree type, tree chrec, gimple *at_stmt, bool use_overflow_semantics) { return chrec_convert_1 (type, chrec, at_stmt, use_overflow_semantics); |