summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/character_comparison_6.f90
blob: b42343f22c564d321bb64ebd770e2247e888468c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { dg-do run }
! { dg-options "-O -fdump-tree-original" }
program main
  implicit none
  character(len=4) :: c
  integer :: n
  integer :: i
  common /foo/ i

  n = 0
  i = 0
  c = 'abcd'
  if ('a ' // c == 'a' // c) STOP 1
  if ('a' // c == 'a ' // c) STOP 2
end program main

! { dg-final { scan-tree-dump-times "gfortran_concat_string" 4 "original" } }
! { dg-final { scan-tree-dump-times "gfortran_compare_string" 2 "original" } }