diff options
Diffstat (limited to 'gcc/cfgloopanal.c')
-rw-r--r-- | gcc/cfgloopanal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgloopanal.c b/gcc/cfgloopanal.c index 68dd928..57c3bac 100644 --- a/gcc/cfgloopanal.c +++ b/gcc/cfgloopanal.c @@ -470,7 +470,7 @@ count_strange_loop_iterations (rtx init, rtx lim, enum rtx_code cond, /* If we are able to prove that we don't pass the first test, we are done. */ - rqmt = simplify_gen_relational (cond, SImode, mode, init, lim); + rqmt = simplify_relational_operation (cond, mode, init, lim); if (rqmt == const0_rtx) return const0_rtx; @@ -560,7 +560,7 @@ count_strange_loop_iterations (rtx init, rtx lim, enum rtx_code cond, /* If this is const_true_rtx and we did not take a conservative approximation of after_wrap above, we might iterate the calculation (but of course we would have to take care about infinite cases). Ignore this for now. */ - rqmt = simplify_gen_relational (cond, SImode, mode, after_wrap, lim); + rqmt = simplify_relational_operation (cond, mode, after_wrap, lim); if (rqmt != const0_rtx) return NULL_RTX; |