Merge Ignore and Deprecated in .opt files.
[official-gcc.git] / gcc / testsuite / gfortran.dg / whole_file_3.f90
blob9b4f5a7d31da87bcdde48448533a6a76a4e155b4
1 ! { dg-do compile }
2 ! { dg-options "" }
3 ! Tests the fix for PR26227 in which the interface mismatches
4 ! below were not detected.
6 ! Contributed by Andrew Pinski <pinskia@gcc.gnu.org>
8 SUBROUTINE PHLOAD (READER,*)
9 IMPLICIT NONE
10 EXTERNAL READER
11 CALL READER (*1)
12 1 RETURN 1
13 END SUBROUTINE
15 program test
16 EXTERNAL R
17 call PHLOAD (R, 1) ! { dg-warning "Missing alternate return spec" }
18 CALL PHLOAD (R, 2) ! { dg-warning "Missing alternate return spec" }
19 CALL PHLOAD (R, *999) ! This one is OK
20 999 continue
21 END program test