On Fri, Apr 03, 2020 at 11:36:29AM +0200, Richard Biener wrote: > Note there's now also the opportunity to set the loop flag for > OpenACC/OpenMP annotated loops if any of that guarantees finiteness. > (for GCC11 only please)
Dunno about OpenACC, but OpenMP loops guarantee finiteness, as the number of iterations must be computable before the loop and must fit into the type in which that count is computed without overflows. Jakub