view gcc/testsuite/gfortran.dg/array_memset_1.f90 @ 128:fe568345ddd5

fix CbC-example
author mir3636
date Wed, 11 Apr 2018 19:32:28 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-O2 -fdump-tree-original" }
subroutine i1(a)
  integer :: a(20)
  a = 0;
end subroutine

subroutine i2(a)
  integer :: a(20)
  a(:) = 0;
end subroutine

subroutine i3(a)
  integer :: a(20)
  a(1:20) = 0;
end subroutine

subroutine r1(a)
  real :: a(20)
  a = 0.0;
end subroutine

subroutine r2(a)
  real :: a(20)
  a(:) = 0.0;
end subroutine

subroutine r3(a)
  real :: a(20)
  a(1:20) = 0.0;
end subroutine

subroutine z1(a)
  complex :: a(20)
  a = 0;
end subroutine

subroutine z2(a)
  complex :: a(20)
  a(:) = 0;
end subroutine

subroutine z3(a)
  complex :: a(20)
  a(1:20) = 0;
end subroutine

subroutine l1(a)
  logical :: a(20)
  a = .false.;
end subroutine

subroutine l2(a)
  logical :: a(20)
  a(:) = .false.;
end subroutine

subroutine l3(a)
  logical :: a(20)
  a(1:20) = .false.;
end subroutine

! { dg-final { scan-tree-dump-times "memset" 12 "original" } }