Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / getdefinition04.f90
blob877d340f640f709531351ef2833517d0475e9ce0
1 ! Tests -fget-definition with COMMON block with same name as variable.
2 program main
3 integer :: x
4 integer :: y
5 common /x/ y
6 x = y
7 end program
9 ! RUN: %flang_fc1 -fget-definition 6 3 4 %s | FileCheck %s
10 ! CHECK: x:{{.*}}getdefinition04.f90, 3, 14-15