URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [string_null_compare_1.f] - Rev 310
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run } ! { dg-options "-std=legacy" } ! ! 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