summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/reference-3-ubv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/mpx/reference-3-ubv.cpp')
-rw-r--r--gcc/testsuite/gcc.target/i386/mpx/reference-3-ubv.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/gcc/testsuite/gcc.target/i386/mpx/reference-3-ubv.cpp b/gcc/testsuite/gcc.target/i386/mpx/reference-3-ubv.cpp
deleted file mode 100644
index 0a874fabb09..00000000000
--- a/gcc/testsuite/gcc.target/i386/mpx/reference-3-ubv.cpp
+++ /dev/null
@@ -1,27 +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 buf1[10];
-
-int rd (int (&p)[100], int i)
-{
- int res = p[i];
- printf ("%d\n", res);
- return res;
-}
-
-int mpx_test (int argc, const char **argv)
-{
- int *p;
-
- rd (buf, 100);
-
- return 0;
-}