aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/widechar_7.f90
blob: 4368321170bc32cf84495a70e80ab67fed617d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { dg-do compile }
! { dg-options "-fdump-tree-original" }

program test

  character(kind=1,len=10) :: s1 = 4_"foobargee", t1 = 4_""
  character(kind=4,len=10) :: s4 = "foobargee", t4 = ""

  t1(5:5) = s1(6:6)
  t4(5:5) = s4(6:6)
  t4(5:5) = s1(6:6)
  t1(5:5) = s4(6:6)

  call sub (t1, t4)

end program test

! { dg-final { scan-tree-dump-times "memmove" 0 "original" } }
! { dg-final { cleanup-tree-dump "original" } }