brintos

brintos / llvm-project-archived public Read only

0
0
Text · 370 B · 6f904b1 Raw
10 lines · plain
1! RUN: %flang_fc1 -fdebug-dump-symbols %s 2>&1 | FileCheck %s2! CHECK: init:[INTEGER(4)::1065353216_4,1073741824_4,1077936128_4,1082130432_4]3! Verify that the closure of EQUIVALENCE'd symbols with any DATA4! initialization produces a combined initializer.5real :: a(2), b(2), c(2)6equivalence(a(2),b(1)),(b(2),c(1))7data a(1)/1./,b(1)/2./,c/3.,4./8common /block/ a9end10