bolt/deps/llvm-18.1.8/flang/test/Lower/HLFIR/tdesc-character-comp-init.f90

14 lines
407 B
Fortran
Raw Normal View History

2025-02-14 19:21:04 +01:00
! Test lowering of derived type descriptor for types with
! a default initialized character component.
! RUN: bbc -emit-fir -hlfir -o - %s | FileCheck %s
subroutine test()
type t
character(5) :: character_comp = "hello"
end type
type(t) :: x
end subroutine
! CHECK-LABEL: fir.global {{.*}} @_QFtestE.c.t constant
! CHECK: fir.address_of(@_QFtestE.di.t.character_comp) : !fir.ref<!fir.char<1,5>>