summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/chkp-fix-calls-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/mpx/chkp-fix-calls-1.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/mpx/chkp-fix-calls-1.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/testsuite/gcc.target/i386/mpx/chkp-fix-calls-1.c b/gcc/testsuite/gcc.target/i386/mpx/chkp-fix-calls-1.c
deleted file mode 100644
index cb4d22984b6..00000000000
--- a/gcc/testsuite/gcc.target/i386/mpx/chkp-fix-calls-1.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -fcheck-pointer-bounds -mmpx" } */
-
-#include "math.h"
-
-double
-test1 (double x, double y, double (*fn)(double, double))
-{
- return fn (x, y);
-}
-
-double
-test2 (double x, double y)
-{
- return test1 (x, y, copysign);
-}