blob: 748f8f701e58becb49aa3ab0c2b5cb96b5dd37ef [file] [log] [blame] [edit]
! RUN: bbc -emit-hlfir -o - %s | FileCheck %s
! Ensure that CDEFINED variable has external (default) linkage and that
! it doesn't have either zero or constant initializer.
module m
use iso_c_binding
integer(c_int), bind(C, name='c_global', CDEFINED) :: c
! CHECK: fir.global @c_global : i32
! CHECK-NOT: fir.zero_bits
! CHECK-NOT: arith.constant
end