URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [intrinsic_verify_1.f90] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }! Test the verify intrinsic. We were ignoring the last character.program progcharacter(len=1) :: c1character(len=4) :: c4c1 = "E"if (verify(c1, "1") .ne. 1) call abortc4 = "ABBA"if (verify(c4, "A") .ne. 2) call abortif (verify(c4, "A", back = .true.) .ne. 3) call abortif (verify(c4, "AB") .ne. 0) call abortend program
Go to most recent revision | Compare with Previous | Blame | View Log
