diff options
Diffstat (limited to 'gcc/tree-chrec.c')
-rw-r--r-- | gcc/tree-chrec.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/tree-chrec.c b/gcc/tree-chrec.c index 24e1944..2d15285 100644 --- a/gcc/tree-chrec.c +++ b/gcc/tree-chrec.c @@ -1230,13 +1230,15 @@ convert_affine_scev (struct loop *loop, tree type, } -/* Convert CHREC for the right hand side of a CREC. +/* Convert CHREC for the right hand side of a CHREC. The increment for a pointer type is always sizetype. */ + tree chrec_convert_rhs (tree type, tree chrec, gimple at_stmt) { if (POINTER_TYPE_P (type)) - type = sizetype; + type = sizetype; + return chrec_convert (type, chrec, at_stmt); } |