https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67202
Thomas Koenig <tkoenig at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |NEW CC| |tkoenig at gcc dot gnu.org --- Comment #2 from Thomas Koenig <tkoenig at gcc dot gnu.org> --- (In reply to Dominique d'Humieres from comment #1) > Is there an easy way to check than a scalar pass-by-reference intent-in > argument has been loaded at the beginning of the function? Easiest to check the *.original dump. If the code looks like x (integer(kind=4) & restrict i, integer(kind=4) & restrict j) { *j = *i; } then it hasn't been done.