Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / mpx / chkp-fix-calls-1.c
blobcb4d22984b66566e4e7df2ecfcd6c05bccfcddc1
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fcheck-pointer-bounds -mmpx" } */
4 #include "math.h"
6 double
7 test1 (double x, double y, double (*fn)(double, double))
9 return fn (x, y);
12 double
13 test2 (double x, double y)
15 return test1 (x, y, copysign);