summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/field-addr-5-nov.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/mpx/field-addr-5-nov.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/mpx/field-addr-5-nov.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/gcc/testsuite/gcc.target/i386/mpx/field-addr-5-nov.c b/gcc/testsuite/gcc.target/i386/mpx/field-addr-5-nov.c
deleted file mode 100644
index b69895e1d20..00000000000
--- a/gcc/testsuite/gcc.target/i386/mpx/field-addr-5-nov.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/* { dg-do run } */
-/* { dg-options "-fcheck-pointer-bounds -mmpx" } */
-
-
-#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], 0);
- foo (&s1.b.b[0], 99);
-
- return 0;
-}