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/] [char_cast_1.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do compile }! { dg-options "-O2 -fdump-tree-original" }!! Check the fix for PR31608 in all it's various manifestations:)! Contributed by Richard Guenther <rguenth@gcc.gnu.org>!character(len=1) :: string = "z"integer :: i(1) = (/100/)print *, Up("abc")print *, transfer(((transfer(string,"x",1))), "x",1)print *, transfer(char(i), "x")print *, Upper ("abcdefg")containsCharacter (len=20) Function Up (string)Character(len=*) stringcharacter(1) :: chrUp = transfer(achar(iachar(transfer(string,chr,1))), "x")returnend function UpCharacter (len=20) Function Upper (string)Character(len=*) stringUpper = &transfer(merge(transfer(string,"x",len(string)), &string, .true.), "x")returnend function Upperend! The sign that all is well is that [S.6][1] appears twice.! Platform dependent variations are [S$6][1], [__S_6][1], [S___6][1]! { dg-final { scan-tree-dump-times "6\\\]\\\[1\\\]" 2 "original" } }! { dg-final { cleanup-tree-dump "original" } }
