Now that semantics is working, the standard -fsyntax-only option of GNU and Clang should be used as the name of the option that causes f18 to just run the front-end. Support both options in f18, silently accepting the old option as a synonym for the new one (as preferred by the code owner), and replace all instances of the old -fparse-only option with -fsyntax-only throughout the source base. Differential Revision: https://reviews.llvm.org/D95887
26 lines
762 B
Fortran
26 lines
762 B
Fortran
! Tests -fget-symbols-sources finding all symbols in file.
|
|
module mm1
|
|
private :: f
|
|
contains
|
|
pure subroutine s (x, y) bind(c)
|
|
intent(in) :: x
|
|
intent(inout) :: y
|
|
contains
|
|
pure subroutine ss
|
|
end subroutine
|
|
end subroutine
|
|
recursive pure function f() result(x)
|
|
real, allocatable :: x
|
|
x = 1.0
|
|
end function
|
|
end module
|
|
|
|
! RUN: %f18 -fget-symbols-sources -fsyntax-only %s 2>&1 | FileCheck %s
|
|
! CHECK-COUNT-1:f:{{.*}}getsymbols01.f90, 12, 26-27
|
|
! CHECK-COUNT-1:mm1:{{.*}}getsymbols01.f90, 2, 8-11
|
|
! CHECK-COUNT-1:s:{{.*}}getsymbols01.f90, 5, 18-19
|
|
! CHECK-COUNT-1:ss:{{.*}}getsymbols01.f90, 9, 19-21
|
|
! CHECK-COUNT-1:x:{{.*}}getsymbols01.f90, 5, 21-22
|
|
! CHECK-COUNT-1:x:{{.*}}getsymbols01.f90, 13, 24-25
|
|
! CHECK-COUNT-1:y:{{.*}}getsymbols01.f90, 5, 24-25
|