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

module pr26246_1
  implicit none
  contains
    function foo(string)
    character(*), intent(in) :: string
    character(len=len(string)+2) :: foo
    if (index(trim(string), '"').ne.0) then
      foo = "'" // trim(string) // "'"
    end if
  end function foo
end module pr26246_1

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