https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92558
--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> --- (In reply to Richard Biener from comment #2) > Will look. Thanks, there's a code snippet which is different before and after the revision. Hopefully, it can be used for a reproducer creation: $ cat set.f90 USE mod_scalars real(r16) wsum, cff DO i=1,nfast0 wsum=wsum+weight(1,i,ng) cff=cff+weight(2,i,ng) END DO DO i=1,nfast0 weight=wsum*cff END DO END