Skip to content

Commit ca2e56d

Browse files
committed
change order
1 parent a0ce784 commit ca2e56d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flang/test/Lower/derived-types.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ subroutine derived_dummy(some_r, some_c2)
3131

3232
! CHECK-LABEL: func @_QMdPlocal_derived(
3333
subroutine local_derived()
34-
type(r) :: some_r
35-
type(c2) :: some_c2
3634
! CHECK-DAG: fir.alloca !fir.type<_QMdTc2{ch_array:!fir.array<20x30x!fir.char<1,10>>}>
3735
! CHECK-DAG: fir.alloca !fir.type<_QMdTr{x:f32}>
36+
type(r) :: some_r
37+
type(c2) :: some_c2
3838
print *, some_c2%ch_array(1,1)
3939
print *, some_r%x
4040
end subroutine

0 commit comments

Comments
 (0)