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
Bug499183 - FreeBSD: differences in avx-vmovq output
[valgrind.git]
/
none
/
tests
/
x86-darwin
/
bug350062.c
blob
3da92a2e3b40fba5e3bcee13241009f44cf31948
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include <math.h>
4
5
// Refer https://bugs.kde.org/show_bug.cgi?id=350062
6
7
int
main
(
int
argc
,
char
**
argv
)
8
{
9
double
x
=
1.1
;
10
double
i
=
floor
(
x
);
11
12
(
void
)
i
;
13
14
fprintf
(
stderr
,
"PASS
\n
"
);
15
return
0
;
16
}