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
PR inline-asm/84742
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
ieee
/
pr29302-1.c
blob
f6f3dd2cd539d9d8efe1a32f078a166e6f44538f
1
extern
void
abort
(
void
);
2
3
int
main
(
void
)
4
{
5
int
n
;
6
long double
x
;
7
8
x
=
1
/
0.0
;
9
10
n
= (
x
==
1
/
0.0
);
11
12
if
(
n
==
1
)
13
return
0
;
14
else
15
abort
();
16
}