[svn-r30300] Fixed the ordering for KIND and SIZE_OF in the fortarn program in order to match the sed commands.

Should only matter for the NAG compiler.

Tested: (gnu, jelly)
This commit is contained in:
Scot Breitenfeld 2016-08-18 13:24:02 -05:00
parent 6d7ac8aa15
commit 5010195435

View File

@ -400,12 +400,12 @@ rm -f pac_fconftest.out
REAL b
DOUBLE PRECISION c
OPEN(8, FILE='pac_fconftest.out', FORM='formatted')
WRITE(8,*) KIND(a)
WRITE(8,*) $FC_SIZEOF_A
WRITE(8,*) kind(a)
WRITE(8,*) KIND(b)
WRITE(8,*) $FC_SIZEOF_B
WRITE(8,*) kind(b)
WRITE(8,*) KIND(c)
WRITE(8,*) $FC_SIZEOF_C
WRITE(8,*) kind(c)
CLOSE(8)
END
])