mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 02:10:29 +08:00
re PR fortran/50960 ([OOP] vtables not marked as constant)
2011-11-09 Janus Weil <janus@gcc.gnu.org> PR fortran/50960 * gfortran.dg/typebound_call_22.f03: New test case. From-SVN: r181208
This commit is contained in:
parent
ed10039e8b
commit
560bb0136f
@ -1,3 +1,8 @@
|
||||
2011-11-09 Janus Weil <janus@gcc.gnu.org>
|
||||
|
||||
PR fortran/50960
|
||||
* gfortran.dg/typebound_call_22.f03: New test case.
|
||||
|
||||
2011-11-09 Janne Blomqvist <jb@gcc.gnu.org>
|
||||
|
||||
PR libfortran/50016
|
||||
|
32
gcc/testsuite/gfortran.dg/typebound_call_22.f03
Normal file
32
gcc/testsuite/gfortran.dg/typebound_call_22.f03
Normal file
@ -0,0 +1,32 @@
|
||||
! { dg-do compile }
|
||||
! { dg-options "-fdump-tree-optimized -O" }
|
||||
!
|
||||
! PR 50960: [OOP] vtables not marked as constant
|
||||
!
|
||||
! This test case checks whether the type-bound call to "x%bar"
|
||||
! is optimized into a static call to "base".
|
||||
!
|
||||
! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
|
||||
|
||||
module m
|
||||
type t
|
||||
contains
|
||||
procedure, nopass :: bar => base
|
||||
end type
|
||||
contains
|
||||
subroutine base()
|
||||
write(*,*) 'base'
|
||||
end subroutine
|
||||
end module
|
||||
|
||||
program test
|
||||
use m
|
||||
class(t), allocatable :: x
|
||||
allocate (t :: x)
|
||||
call x%bar ()
|
||||
end program
|
||||
|
||||
! { dg-final { scan-tree-dump-times "base \\(\\);" 1 "optimized" } }
|
||||
! { dg-final { cleanup-tree-dump "optimized" } }
|
||||
|
||||
! { dg-final { cleanup-modules "m" } }
|
Loading…
x
Reference in New Issue
Block a user