URL
                    https://opencores.org/ocsvn/openrisc/openrisc/trunk
                
            Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [bind_c_usage_16.f03] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }! { dg-additional-sources bind_c_usage_16_c.c }!! PR fortran/34079!! Ensure character-returning, bind(C) function work.!module moduse iso_c_bindingimplicit nonecontainsfunction bar(x) bind(c, name="returnA")character(len=1,kind=c_char) :: bar, xbar = xbar = 'A'end function barfunction foo() bind(c, name="returnB")character(len=1,kind=c_char) :: foofoo = 'B'end function fooend module modsubroutine test() bind(c)use modimplicit nonecharacter(len=1,kind=c_char) :: acharacter(len=3,kind=c_char) :: bcharacter(len=1,kind=c_char) :: c(3)character(len=3,kind=c_char) :: d(3)integer :: ia = 'z'b = 'fffff'c = 'h'd = 'uuuuu'a = bar('x')if (a /= 'A') call abort()b = bar('y')if (b /= 'A' .or. iachar(b(2:2))/=32 .or. iachar(b(3:3))/=32) call abort()c = bar('x')if (any(c /= 'A')) call abort()d = bar('y')if (any(d /= 'A')) call abort()a = foo()if (a /= 'B') call abort()b = foo()if (b /= 'B') call abort()c = foo()if (any(c /= 'B')) call abort()d = foo()if (any(d /= 'B')) call abort()do i = 1,3if(iachar(d(i)(2:2)) /=32 .or. iachar(d(i)(3:3)) /= 32) call abort()end doend subroutine! { dg-final { cleanup-modules "mod" } }
