Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / mpx / sincos-1-nov.c
blobda5f301a19a0f09745e5079d294b9e4974cf4b92
1 /* { dg-do run } */
2 /* { dg-options "-fcheck-pointer-bounds -mmpx" } */
3 /* { dg-additional-options "-lm" } */
6 #include "mpx-check.h"
7 #include "math.h"
9 int mpx_test (int argc, const char **argv)
11 double d1, d2;
12 d1 = sin(argc);
13 d2 = cos(argc);
15 printf ("%f %f\n", d1, d2);
17 return 0;