OSDN Git Service

2008-01-06 Tobias Burnus <burnus@net-b.de>
authorburnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 6 Jan 2008 20:18:01 +0000 (20:18 +0000)
committerburnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 6 Jan 2008 20:18:01 +0000 (20:18 +0000)
       PR fortran/34689
       * gfortran.dg/intent_out_4.f90: Fix test case.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@131360 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/intent_out_4.f90

index 1631fe9..53e3ae6 100644 (file)
@@ -1,6 +1,11 @@
 2008-01-06  Tobias Burnus  <burnus@net-b.de>
 
        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.
 
 2008-01-06  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
index e34c452..93d7612 100644 (file)
@@ -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