Commit bffcdc87 by Tobias Burnus Committed by Tobias Burnus

re PR fortran/34689 (libgomp.fortran/appendix-a/a.33.3.f90 -O (test for excess errors))

2008-01-06  Tobias Burnus  <burnus@net-b.de>

       PR fortran/34689
       * gfortran.dg/intent_out_4.f90: Fix test case.

From-SVN: r131360
parent ac61ba6a
2008-01-06 Tobias Burnus <burnus@net-b.de> 2008-01-06 Tobias Burnus <burnus@net-b.de>
PR fortran/34689 PR fortran/34689
* gfortran.dg/intent_out_4.f90: Fix test case.
2008-01-06 Tobias Burnus <burnus@net-b.de>
PR fortran/34689
* gfortran.dg/intent_out_4.f90: New. * gfortran.dg/intent_out_4.f90: New.
2008-01-06 Jerry DeLisle <jvdelisle@gcc.gnu.org> 2008-01-06 Jerry DeLisle <jvdelisle@gcc.gnu.org>
...@@ -11,8 +11,8 @@ function test() ...@@ -11,8 +11,8 @@ function test()
integer :: test integer :: test
interface interface
subroutine foo(a) subroutine foo(a)
integer(inout) :: a integer, intent(inout) :: a
end subroutine foo end subroutine foo
end interface end interface
call foo(a) call foo(test)
end function test end function test
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment