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
* cfghooks.c (verify_flow_info): Disable check that all probabilities
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
data_derived_1.f90
blob
3ec08e2f336a28778770b1fde98ff1c749149b74
1
! { dg-do run }
2
! PR 66328 - this used to give a wrong value for integer values for DATA
3
program
main
4
TYPE
t
5
REAL
r
6
END TYPE
t
7
TYPE
(
t
)
e1
,
e2
8
9
DATA
e1
/
t
(
1
) /
10
DATA
e2
/
t
(
1.0
) /
11
if
(
abs
(
e1
%
r
-
1.0
) >
1e-6
)
call
abort
12
if
(
abs
(
e2
%
r
-
1.0
) >
1e-6
)
call
abort
13
END