summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/pointer-arg-3-lbv.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/mpx/pointer-arg-3-lbv.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/mpx/pointer-arg-3-lbv.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc/testsuite/gcc.target/i386/mpx/pointer-arg-3-lbv.c b/gcc/testsuite/gcc.target/i386/mpx/pointer-arg-3-lbv.c
deleted file mode 100644
index d6571be44b5..00000000000
--- a/gcc/testsuite/gcc.target/i386/mpx/pointer-arg-3-lbv.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/* { dg-do run } */
-/* { dg-shouldfail "bounds violation" } */
-/* { dg-options "-fcheck-pointer-bounds -mmpx" } */
-
-
-#define SHOULDFAIL
-
-#include "mpx-check.h"
-
-int buf[100];
-
-int rd (int t1, int t2, int t3, int t4, int t5, int t6, int *p, int i)
-{
- int res = p[i];
- printf ("%d\n", res);
- return res;
-}
-
-int mpx_test (int argc, const char **argv)
-{
- int *p;
-
- rd (0, 0, 0, 0, 0, 0, buf, -1);
-
- return 0;
-}