-
Notifications
You must be signed in to change notification settings - Fork 15.2k
Open
Labels
flangFlang issues not falling into any other categoryFlang issues not falling into any other category
Description
The following program fails to link with an undefined symbol, but works with gfortran:
program test_dtime
integer(8) :: i, j
real, dimension(2) :: tarray
real :: result
call dtime(tarray, result)
print *, result
print *, tarray(1)
print *, tarray(2)
do i=1,100000000 ! Just a delay
j = i * i - i
end do
call dtime(tarray, result)
print *, result
print *, tarray(1)
print *, tarray(2)
end program test_dtime
It seems to be a GNU extensions, so I'm not sure if Flang should actually support this.
Metadata
Metadata
Assignees
Labels
flangFlang issues not falling into any other categoryFlang issues not falling into any other category