On Thu, Mar 09, 2023 at 08:18:08AM +0000, Richard Biener wrote: > > the existing comment already explains the issue. I suppose > -fdefault-integer-8 would also work around the issue? >
Please, no. -fdefault-* options should have been removed from gfortran years ago. Without a careful review, one might be stepping into a minefield, because the -fdefault-* option break storage association rules. If you want to use an option, then you likely want -finteger-4-integer-8. This option preserves storage association. -- Steve