You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PROGRAM main
IMPLICIT NONE
INTEGER(2), PARAMETER :: I2Max=32767
INTEGER(2), PARAMETER :: I2Min=-32768
TYPE :: DT0
END TYPE
INTEGER, TARGET :: I
TYPE(DT0), TARGET :: I1Arr(I2Min:I2Max)=(/(DT0(),I=I2Min, I2Max)/)
END
Flang took long time to compile it.
All ifort, gfortran and XLF used much less time.