Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / data09.f90
blob6f904b12f5ff0e4b1dde05806b994a9c5bfe810a
1 ! RUN: %flang_fc1 -fdebug-dump-symbols %s 2>&1 | FileCheck %s
2 ! CHECK: init:[INTEGER(4)::1065353216_4,1073741824_4,1077936128_4,1082130432_4]
3 ! Verify that the closure of EQUIVALENCE'd symbols with any DATA
4 ! initialization produces a combined initializer.
5 real :: a(2), b(2), c(2)
6 equivalence(a(2),b(1)),(b(2),c(1))
7 data a(1)/1./,b(1)/2./,c/3.,4./
8 common /block/ a
9 end