bolt/deps/llvm-18.1.8/flang/test/Semantics/getdefinition04.f90

11 lines
256 B
Fortran
Raw Normal View History

2025-02-14 19:21:04 +01:00
! Tests -fget-definition with COMMON block with same name as variable.
program main
integer :: x
integer :: y
common /x/ y
x = y
end program
! RUN: %flang_fc1 -fget-definition 6 3 4 %s | FileCheck %s
! CHECK: x:{{.*}}getdefinition04.f90, 3, 14-15