xref: /llvm-project/flang/test/Lower/variable.f90 (revision 99d239341cc32f062be349abb57a23e415c229c5)
1! RUN: bbc -emit-fir %s -o - | FileCheck %s
2
3! CHECK-LABEL: func @_QPs() {
4subroutine s
5  ! CHECK-DAG: fir.alloca !fir.box<!fir.heap<i32>> {{{.*}}uniq_name = "{{.*}}Eally"}
6  integer, allocatable :: ally
7  ! CHECK-DAG: fir.alloca !fir.box<!fir.ptr<i32>> {{{.*}}uniq_name = "{{.*}}Epointy"}
8  integer, pointer :: pointy
9  ! CHECK-DAG: fir.alloca i32 {{{.*}}fir.target{{.*}}uniq_name = "{{.*}}Ebullseye"}
10  integer, target :: bullseye
11  ! CHECK: return
12end subroutine s
13