Change the continuation line format for stat.h, debug.h AOCC flang compiler is complaining about the continuation lines in these two files. It does not complain about similar continuation lines in files (e.g. SRC/icbacn.F90), so I believe this is due to flang setting the Fortran dialect to something like F77 for most of the compilations, which cause problems with these *.h files. I cannot find a way to force flang Fortran dialect to accept the & at end of line continuation marker, so this patch changes the continuation lines in these two files (stat.h, debug.h) to use continuation marker in column 6. This should fix #300
17 lines
856 B
C
17 lines
856 B
C
!
|
|
!\SCCS Information: @(#)
|
|
! FILE: debug.h SID: 2.3 DATE OF SID: 11/16/95 RELEASE: 2
|
|
!
|
|
! %---------------------------------%
|
|
! | See debug.doc for documentation |
|
|
! %---------------------------------%
|
|
integer logfil, ndigit, mgetv0,
|
|
& msaupd, msaup2, msaitr, mseigt, msapps, msgets, mseupd,
|
|
& mnaupd, mnaup2, mnaitr, mneigh, mnapps, mngets, mneupd,
|
|
& mcaupd, mcaup2, mcaitr, mceigh, mcapps, mcgets, mceupd
|
|
common /debug/
|
|
& logfil, ndigit, mgetv0,
|
|
& msaupd, msaup2, msaitr, mseigt, msapps, msgets, mseupd,
|
|
& mnaupd, mnaup2, mnaitr, mneigh, mnapps, mngets, mneupd,
|
|
& mcaupd, mcaup2, mcaitr, mceigh, mcapps, mcgets, mceupd
|