summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/static-init-3-lbv.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/mpx/static-init-3-lbv.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/mpx/static-init-3-lbv.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc/testsuite/gcc.target/i386/mpx/static-init-3-lbv.c b/gcc/testsuite/gcc.target/i386/mpx/static-init-3-lbv.c
deleted file mode 100644
index 3aa21ca3619..00000000000
--- a/gcc/testsuite/gcc.target/i386/mpx/static-init-3-lbv.c
+++ /dev/null
@@ -1,25 +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 *p = buf;
-
-int foo (int i)
-{
- static int **pp = &p;
-
- return (*pp)[i];
-}
-
-int mpx_test (int argc, const char *argv[])
-{
- printf ("%d\n", foo (-1));
-
- return 0;
-}