summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/field-addr-5-lbv.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/mpx/field-addr-5-lbv.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/mpx/field-addr-5-lbv.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/gcc/testsuite/gcc.target/i386/mpx/field-addr-5-lbv.c b/gcc/testsuite/gcc.target/i386/mpx/field-addr-5-lbv.c
deleted file mode 100644
index c00d42f3213..00000000000
--- a/gcc/testsuite/gcc.target/i386/mpx/field-addr-5-lbv.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/* { dg-do run } */
-/* { dg-shouldfail "bounds violation" } */
-/* { dg-options "-fcheck-pointer-bounds -mmpx" } */
-
-
-#define SHOULDFAIL
-
-#include "mpx-check.h"
-
-struct S {
- int a;
- int b[100];
- int c;
-} S;
-
-struct S1 {
- int x;
- struct S a[10];
- struct S b;
-} S1;
-
-int foo (int *p, int i)
-{
- printf ("%d\n", p[i]);
- return p[i];
-}
-
-struct S1 s1;
-
-int mpx_test (int argc, const char **argv)
-{
- foo (&s1.b.b[0], -1);
-
- return 0;
-}