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
2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
byte_2.f90
blob
a4100555776f5b6239b9a2681af099584c27212c
1
! { dg-do run }
2
! { dg-options "-std=gnu" }
3
program
testbyte
4
integer
(
1
) ::
ii
=
7
5
call
foo
(
ii
)
6
end program
testbyte
7
8
subroutine
foo
(
ii
)
9
integer
(
1
)
ii
10
byte
b
11
b
=
ii
12
call
bar
(
ii
,
b
)
13
end subroutine
foo
14
15
subroutine
bar
(
ii
,
b
)
16
integer
(
1
)
ii
17
byte
b
18
if
(
b
.
ne
.
ii
)
then
19
! print *,"Failed"
20
call
abort
21
end if
22
end subroutine
bar