From: Tobias Burnus Date: Sun, 6 Jan 2008 20:18:01 +0000 (+0100) Subject: re PR fortran/34689 (libgomp.fortran/appendix-a/a.33.3.f90 -O (test for excess... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bffcdc8720b8c49c6cef46149dccf78b2003f857;p=gcc.git re PR fortran/34689 (libgomp.fortran/appendix-a/a.33.3.f90 -O (test for excess errors)) 2008-01-06 Tobias Burnus PR fortran/34689 * gfortran.dg/intent_out_4.f90: Fix test case. From-SVN: r131360 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1631fe90021..53e3ae6e18a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-01-06 Tobias Burnus + + PR fortran/34689 + * gfortran.dg/intent_out_4.f90: Fix test case. + 2008-01-06 Tobias Burnus PR fortran/34689 diff --git a/gcc/testsuite/gfortran.dg/intent_out_4.f90 b/gcc/testsuite/gfortran.dg/intent_out_4.f90 index e34c452e8e6..93d7612e4e5 100644 --- a/gcc/testsuite/gfortran.dg/intent_out_4.f90 +++ b/gcc/testsuite/gfortran.dg/intent_out_4.f90 @@ -11,8 +11,8 @@ function test() integer :: test interface subroutine foo(a) - integer(inout) :: a + integer, intent(inout) :: a end subroutine foo end interface - call foo(a) + call foo(test) end function test