-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the continuation line format for stat.h, debug.h (#339)
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
- Loading branch information
Showing
9 changed files
with
64 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
! | ||
!\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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
! %--------------------------------% | ||
! | See stat.doc for documentation | | ||
! %--------------------------------% | ||
! | ||
!\SCCS Information: @(#) | ||
! FILE: stat.h SID: 2.2 DATE OF SID: 11/16/95 RELEASE: 2 | ||
! | ||
real t0, t1, t2, t3, t4, t5 | ||
save t0, t1, t2, t3, t4, t5 | ||
! | ||
integer nopx, nbx, nrorth, nitref, nrstrt | ||
real tsaupd, tsaup2, tsaitr, tseigt, tsgets, tsapps, tsconv,& | ||
tnaupd, tnaup2, tnaitr, tneigh, tngets, tnapps, tnconv,& | ||
tcaupd, tcaup2, tcaitr, tceigh, tcgets, tcapps, tcconv,& | ||
tmvopx, tmvbx, tgetv0, titref, trvec | ||
common /timing/ & | ||
nopx, nbx, nrorth, nitref, nrstrt, & | ||
tsaupd, tsaup2, tsaitr, tseigt, tsgets, tsapps, tsconv,& | ||
tnaupd, tnaup2, tnaitr, tneigh, tngets, tnapps, tnconv,& | ||
tcaupd, tcaup2, tcaitr, tceigh, tcgets, tcapps, tcconv,& | ||
tmvopx, tmvbx, tgetv0, titref, trvec |