File: alloc_comp_assign_10.f90

package info (click to toggle)
gcc-arm-none-eabi 15%3A14.2.rel1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,099,328 kB
  • sloc: cpp: 3,627,108; ansic: 2,571,498; ada: 834,230; f90: 235,082; makefile: 79,231; asm: 74,984; xml: 51,692; exp: 39,736; sh: 33,298; objc: 15,629; python: 15,069; fortran: 14,429; pascal: 7,003; awk: 5,070; perl: 3,106; ml: 285; lisp: 253; lex: 204; haskell: 135
file content (59 lines) | stat: -rw-r--r-- 1,936 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
! { dg-do run }
!
! Test the fix for PR39879, in which gfc gagged on the double
! defined assignment where the rhs had a default initialiser.
!
! Contributed by David Sagan <david.sagan@gmail.com>
!
module test_struct
  interface assignment (=)
    module procedure tao_lat_equal_tao_lat
  end interface
  type bunch_params_struct
    integer n_live_particle          
  end type
  type tao_lattice_struct
    type (bunch_params_struct), allocatable :: bunch_params(:)
    type (bunch_params_struct), allocatable :: bunch_params2(:)
  end type
  type tao_universe_struct
    type (tao_lattice_struct), pointer :: model, design
    character(200), pointer :: descrip => NULL()
  end type
  type tao_super_universe_struct
    type (tao_universe_struct), allocatable :: u(:)          
  end type
  type (tao_super_universe_struct), save, target :: s
  contains
    subroutine tao_lat_equal_tao_lat (lat1, lat2)
      implicit none
      type (tao_lattice_struct), intent(inout) :: lat1
      type (tao_lattice_struct), intent(in) :: lat2
      if (allocated(lat2%bunch_params)) then
        lat1%bunch_params = lat2%bunch_params
      end if 
      if (allocated(lat2%bunch_params2)) then
        lat1%bunch_params2 = lat2%bunch_params2
      end if 
    end subroutine
end module

program tao_program
  use test_struct
  implicit none
  type (tao_universe_struct), pointer :: u
  integer n, i
  allocate (s%u(1))
  u => s%u(1)
  allocate (u%design, u%model)
  n = 112
  allocate (u%model%bunch_params(0:n), u%design%bunch_params(0:n))
  u%design%bunch_params%n_live_particle = [(i, i = 0, n)]
  u%model = u%design
  u%model = u%design ! The double assignment was the cause of the ICE
  if (.not. allocated (u%model%bunch_params)) STOP 1
  if (any (u%model%bunch_params%n_live_particle .ne. [(i, i = 0, n)])) STOP 2
  Deallocate (u%model%bunch_params, u%design%bunch_params)
  deallocate (u%design, u%model)
  deallocate (s%u)
end program