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
/
tiny_1.f90
blob
e8bfb2d89949620593c60ff6e45ae99fb22850b0
1
! { dg-do run }
2
! Test program inspired by bug report from Walt Brainerd.
3
! http://gcc.gnu.org/ml/fortran/2005-04/msg00132.html
4
program
tiny1
5
real
(
4
)
x4
6
real
(
8
)
x8
7
if
(
minexponent
(
x4
) /=
exponent
(
tiny
(
x4
)))
call
abort
8
if
(
minexponent
(
x8
) /=
exponent
(
tiny
(
x8
)))
call
abort
9
end program
tiny1