repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
980709-1.c
blob
cda80765a6f3f10cc5a130d3c3b623ed9dec43e3
1
#include <math.h>
2
3
main
()
4
{
5
volatile
double
a
;
6
double
c
;
7
a
=
32.0
;
8
c
=
pow
(
a
,
1.0
/
3.0
);
9
if
(
c
+
0.1
>
3.174802
10
&&
c
-
0.1
<
3.174802
)
11
exit
(
0
);
12
else
13
abort
();
14
}