comparison gcc/testsuite/gfortran.dg/lto/pr41576_1.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 program test
2 common /bar/ c, d
3 integer(4) :: c, d
4 interface
5 subroutine foo()
6 end subroutine
7 end interface
8 call foo
9 if (c/=1 .or. d/=2) call abort
10 end program test
11