annotate gcc/testsuite/gfortran.dg/intent_used_1.f90 @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ! { dg-do compile }
kono
parents:
diff changeset
2 ! Tests the fix for the regression caused by the patch for PR20869
kono
parents:
diff changeset
3 ! which itself is tested and described by intrinsic_external_1.f90
kono
parents:
diff changeset
4 !
kono
parents:
diff changeset
5 ! reported to the fortran list by Dominique Dhumieres dominiq@lps.ens.fr
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 MODULE global
kono
parents:
diff changeset
8 INTERFACE
kono
parents:
diff changeset
9 SUBROUTINE foo(i, j)
kono
parents:
diff changeset
10 IMPLICIT NONE
kono
parents:
diff changeset
11 INTEGER :: j
kono
parents:
diff changeset
12 integer, DIMENSION(j,*) :: i ! This constituted usage of j and so triggered....
kono
parents:
diff changeset
13 INTENT (IN) j ! Would give "Cannot change attributes of symbol at (1) after it has been used"
kono
parents:
diff changeset
14 INTENT (INOUT) i
kono
parents:
diff changeset
15 END SUBROUTINE foo
kono
parents:
diff changeset
16 END INTERFACE
kono
parents:
diff changeset
17 END MODULE global