Hi Tobias, > LGTM – I am fine with either variant, but I am slightly inclined to > removing the gcc_assert* > – as I believe that the existing checks come early enough and do seem to > work well. I played some more and found additional cases that we hadn't discussed before. (At least I hadn't thought of them because of the focus on deferred length strings.) - automatic string variables / arrays - assumed length strings - PDTs with character components. The last one actually turned out sort of "hopeless" for now, so I opened https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102003 to track this. I added the other cases to testcase pr100950.f90 and reduced the checks and code within "substring_has_constant_len" to the bare minimum. See the attached follow-up patch. > Can you check ('grep') whether we already have sufficient coverage of > substring out of bounds? > We presumably have, but if you spot something, I think it makes sense to > add those to the testsuite. We do have some checks on substring indices (e.g. substr_10.f90), but not really extensive coverage. > Tobias > *I think GCC won't complain but if ENABLE_ASSERT_CHECKING is not defined, > there is then a pointless 'length =' assignment, overridden before it is > ever used. Yes. This is fixed below. I guess I have to apologize for things getting a bit out of control for this PR, but the results are on the other hand way beyond my initial expectations... Re-regtested on x86_64-pc-linux-gnu. Should be safe elsewhere... OK? Thanks, Harald Fortran - extend set of substring expressions handled in length simplification gcc/fortran/ChangeLog: PR fortran/100950 * simplify.c (substring_has_constant_len): Minimize checks for substring expressions being allowed. gcc/testsuite/ChangeLog: PR fortran/100950 * gfortran.dg/pr100950.f90: Extend coverage.