annotate gcc/testsuite/gfortran.dg/class_54.f90 @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ! { dg-do compile }
kono
parents:
diff changeset
2 !
kono
parents:
diff changeset
3 ! PR 53718: [4.7/4.8 regression] [OOP] gfortran generates asm label twice in the same output file
kono
parents:
diff changeset
4 !
kono
parents:
diff changeset
5 ! Contributed by Adrian Prantl <adrian@llnl.gov>
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 module m
kono
parents:
diff changeset
8 type t
kono
parents:
diff changeset
9 end type
kono
parents:
diff changeset
10 end module
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 subroutine sub1
kono
parents:
diff changeset
13 use m
kono
parents:
diff changeset
14 class(t), pointer :: a1
kono
parents:
diff changeset
15 end subroutine
kono
parents:
diff changeset
16
kono
parents:
diff changeset
17 subroutine sub2
kono
parents:
diff changeset
18 use m
kono
parents:
diff changeset
19 class(t), pointer :: a2
kono
parents:
diff changeset
20 end subroutine