OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [entry_2.f90] - Diff between revs 816 and 826

Only display areas with differences | Details | Blame | View Log

Rev 816 Rev 826
! Test alternate entry points for functions when the result types
! Test alternate entry points for functions when the result types
! of all entry points match
! of all entry points match
        character*(*) function f1 (str, i, j)
        character*(*) function f1 (str, i, j)
        character str*(*), e1*(*), e2*(*)
        character str*(*), e1*(*), e2*(*)
        integer i, j
        integer i, j
        f1 = str (i:j)
        f1 = str (i:j)
        return
        return
        entry e1 (str, i, j)
        entry e1 (str, i, j)
        i = i + 1
        i = i + 1
        entry e2 (str, i, j)
        entry e2 (str, i, j)
        j = j - 1
        j = j - 1
        e2 = str (i:j)
        e2 = str (i:j)
        end function
        end function
        character*5 function f3 ()
        character*5 function f3 ()
        character e3*(*), e4*(*)
        character e3*(*), e4*(*)
        integer i
        integer i
        f3 = 'ABCDE'
        f3 = 'ABCDE'
        return
        return
        entry e3 (i)
        entry e3 (i)
        entry e4 (i)
        entry e4 (i)
        if (i .gt. 0) then
        if (i .gt. 0) then
          e3 = 'abcde'
          e3 = 'abcde'
        else
        else
          e4 = 'UVWXY'
          e4 = 'UVWXY'
        endif
        endif
        end function
        end function
        program entrytest
        program entrytest
        character f1*16, e1*16, e2*16, str*16, ret*16
        character f1*16, e1*16, e2*16, str*16, ret*16
        character f3*5, e3*5, e4*5
        character f3*5, e3*5, e4*5
        integer i, j
        integer i, j
        str = 'ABCDEFGHIJ'
        str = 'ABCDEFGHIJ'
        i = 2
        i = 2
        j = 6
        j = 6
        ret = f1 (str, i, j)
        ret = f1 (str, i, j)
        if ((i .ne. 2) .or. (j .ne. 6)) call abort ()
        if ((i .ne. 2) .or. (j .ne. 6)) call abort ()
        if (ret .ne. 'BCDEF') call abort ()
        if (ret .ne. 'BCDEF') call abort ()
        ret = e1 (str, i, j)
        ret = e1 (str, i, j)
        if ((i .ne. 3) .or. (j .ne. 5)) call abort ()
        if ((i .ne. 3) .or. (j .ne. 5)) call abort ()
        if (ret .ne. 'CDE') call abort ()
        if (ret .ne. 'CDE') call abort ()
        ret = e2 (str, i, j)
        ret = e2 (str, i, j)
        if ((i .ne. 3) .or. (j .ne. 4)) call abort ()
        if ((i .ne. 3) .or. (j .ne. 4)) call abort ()
        if (ret .ne. 'CD') call abort ()
        if (ret .ne. 'CD') call abort ()
        if (f3 () .ne. 'ABCDE') call abort ()
        if (f3 () .ne. 'ABCDE') call abort ()
        if (e3 (1) .ne. 'abcde') call abort ()
        if (e3 (1) .ne. 'abcde') call abort ()
        if (e4 (1) .ne. 'abcde') call abort ()
        if (e4 (1) .ne. 'abcde') call abort ()
        if (e3 (0) .ne. 'UVWXY') call abort ()
        if (e3 (0) .ne. 'UVWXY') call abort ()
        if (e4 (0) .ne. 'UVWXY') call abort ()
        if (e4 (0) .ne. 'UVWXY') call abort ()
        end program
        end program
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.