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
coarray_41.f90: Add "-latomic" option if libatomic_available.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr64528.f90
blob
f6cca4f73e002e5f62d3fee7fe13293db6b75c2e
1
! PR fortran/64528
2
! { dg-do compile }
3
! { dg-options "-O -fno-tree-dce -fno-tree-ccp" }
4
5
program
pr64528
6
interface
7
subroutine
foo
(
x
)
8
integer
,
value
::
x
9
end subroutine
foo
10
end interface
11
integer
::
x
12
x
=
10
13
call
foo
(
x
)
14
if
(
x
.
ne
.
10
)
then
15
endif
16
end program
pr64528
17
subroutine
foo
(
x
)
18
integer
,
value
::
x
19
x
=
11
20
end subroutine
foo