repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove warning caused by D demangle testcase
[valgrind.git]
/
VEX
/
test
/
fp1.c
blob
3f3aca36d9e7fea95a6e44476dc88e1211eb4a3e
1
2
#include <stdio.h>
3
4
double
a
[
10
];
5
6
int
main
(
void
)
7
{
8
int
i
;
9
double
s
;
10
for
(
i
=
0
;
i
<
10
;
i
++)
11
a
[
i
] =
11.11
*
i
;
12
s
=
0.0
;
13
for
(
i
=
0
;
i
<
10
;
i
++)
14
s
+=
a
[
i
];
15
printf
(
"result = %f
\n
"
,
s
);
16
return
0
;
17
}