xref
: /
openbsd-src
/
gnu
/
usr.bin
/
gcc
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
921019-2.c
(revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
main
()
2
{
3
double
x
,
y
=
0.5
;
4
x
=
y
/
0.2
;
5
if
(
x
!=
x
)
6
abort
();
7
exit
(0);
8
}
9