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
libgfortran/ChangeLog:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr43730.c
blob
0d91aef1d46574f9332913d9e98aeff5e2352599
1
/* { dg-do compile } */
2
/* { dg-options "-O0" } */
3
extern
int
(
isinfl
)(
long double
);
4
5
int
6
bugfun
(
long double
x
,
long double
y
)
7
{
8
int
result
;
9
10
if
(
isinfl
(
x
))
11
result
=
isinfl
(
y
);
12
else
13
{
14
int
kx
,
ky
;
15
kx
=
ky
=
1
;
16
result
= (
kx
==
ky
);
17
}
18
return
(
result
);
19
}