[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_54.f90
blobfdcdebc54c4b797b3ce5b5f9ddcc0fe4b765cec1
1 ! { dg-do compile }
3 ! PR 53718: [4.7/4.8 regression] [OOP] gfortran generates asm label twice in the same output file
5 ! Contributed by Adrian Prantl <adrian@llnl.gov>
7 module m
8 type t
9 end type
10 end module
12 subroutine sub1
13 use m
14 class(t), pointer :: a1
15 end subroutine
17 subroutine sub2
18 use m
19 class(t), pointer :: a2
20 end subroutine