URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [string_null_compare_1.f] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run } ! PR 27784 - Different strings should compare unequal even if they ! have CHAR(0) in them. program main character*3 str1, str2 call setval(str1, str2) if (str1 == str2) call abort end subroutine setval(str1, str2) character*3 str1, str2 str1 = 'a' // CHAR(0) // 'a' str2 = 'a' // CHAR(0) // 'c' end
Go to most recent revision | Compare with Previous | Blame | View Log