repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2017-12-08 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
implicit_pure_2.f90
blob
16fa64f39ebe46a9b6329d19fdc11b317ded0ab4
1
! { dg-do compile }
2
! PR 51502 - this was wrongly detected to be implicit pure.
3
module
m
4
integer
::
i
5
contains
6
subroutine
foo
(
x
)
7
integer
,
intent
(
inout
) ::
x
8
outer
:
block
9
block
10
i
=
5
11
end
block
12
end
block outer
13
end subroutine
foo
14
end module
m
15
16
! { dg-final { scan-module-absence "m" "IMPLICIT_PURE" } }