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