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
* config/i386/i386.md (paritydi2, paritysi2): New expanders.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
dfloat_1.f90
blob
098f22e28762a60297cf63305da42be691996692
1
! { dg-do run }
2
! Progam to test the dfloat intrinsic.
3
program
dfloat_1
4
implicit none
5
integer
(
2
)
i2
6
integer
(
4
)
i4
7
integer
(
8
)
i8
8
i2
= -
4_2
9
i4
=
4_4
10
i8
=
10_8
11
if
(
dfloat
(
i2
) /= -
4
.
d0
)
call
abort
()
12
if
(
dfloat
(
i4
) /=
4
.
d0
)
call
abort
()
13
if
(
dfloat
(
i8
) /=
10
.
d0
)
call
abort
()
14
if
(
dfloat
(
i4
*
i2
) /= -
16
.
d0
)
call
abort
()
15
end program
dfloat_1