11 lines · plain
1! RUN: bbc -emit-hlfir -o - %s | FileCheck %s2! Ensure that CDEFINED variable has external (default) linkage and that3! it doesn't have either zero or constant initializer.4module m5 use iso_c_binding6 integer(c_int), bind(C, name='c_global', CDEFINED) :: c7 ! CHECK: fir.global @c_global : i328 ! CHECK-NOT: fir.zero_bits9 ! CHECK-NOT: arith.constant10end11