summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/character_comparison_7.f90
blob: 1f132cac73698819cb2310e4dd025db1af8d86d7 (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
! { dg-do run }
! { dg-options "-O -fdump-tree-original" }
! Test that expressions in subroutine calls are also optimized
program main
  implicit none
  character(len=4) :: c
  c = 'abcd'
  call yes(c == c)
  call no(c /= c)
end program main

subroutine yes(a)
  implicit none
  logical, intent(in) :: a
  if (.not. a) STOP 1
end subroutine yes

subroutine no(a)
  implicit none
  logical, intent(in) :: a
  if (a) STOP 2
end subroutine no

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