summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/character_comparison_4.f90
blob: d442b50a24993363b5f93bec7e63679a3a2996fe (plain)
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
! { dg-do run }
! { dg-options "-O -fdump-tree-original" }
program main
  implicit none
  character(len=4) :: c, d
  integer :: n
  integer :: i
  common /foo/ i

  n = 0
  i = 0
  c = 'abcd'
  d = 'efgh'

  n = n + 1 ; if ('a' // c == 'a' // c) call yes
  n = n + 1 ; if (c // 'a' == c // 'a') call yes
  n = n + 1; if ('b' // c > 'a' // d) call yes
  n = n + 1; if (c // 'b' > c // 'a') call yes

  if ('a' // c /= 'a' // c) STOP 1
  if ('a' // c // 'b' == 'a' // c // 'a') STOP 2
  if ('b' // c == 'a' // c) STOP 3
  if (c // 'a' ==  c // 'b') STOP 4
  if (c // 'a ' /=  c // 'a') STOP 5
  if (c // 'b' /=  c // 'b ') STOP 6

  if (n /= i) STOP 7
end program main

subroutine yes
  implicit none
  common /foo/ i
  integer :: i
  i = i + 1
end subroutine yes

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