URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [character_comparison_7.f90] - Rev 858
Go to most recent revision | Compare with Previous | Blame | View Log
! { 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) call abort
end subroutine yes
subroutine no(a)
implicit none
logical, intent(in) :: a
if (a) call abort
end subroutine no
! { dg-final { scan-tree-dump-times "gfortran_compare_string" 0 "original" } }
! { dg-final { cleanup-tree-dump "original" } }
Go to most recent revision | Compare with Previous | Blame | View Log