summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/chkp-const-check-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/chkp-const-check-1.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/chkp-const-check-1.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/testsuite/gcc.target/i386/chkp-const-check-1.c b/gcc/testsuite/gcc.target/i386/chkp-const-check-1.c
deleted file mode 100644
index 6e6d067fb50..00000000000
--- a/gcc/testsuite/gcc.target/i386/chkp-const-check-1.c
+++ /dev/null
@@ -1,10 +0,0 @@
-/* { dg-do compile { target { ! x32 } } } */
-/* { dg-options "-fcheck-pointer-bounds -mmpx -O2 -fdump-tree-chkpopt" } */
-/* { dg-final { scan-tree-dump-not "bndcl" "chkpopt" } } */
-/* { dg-final { scan-tree-dump-not "bndcu" "chkpopt" } } */
-
-int test (int *p)
-{
- p = (int *)__builtin___bnd_set_ptr_bounds (p, sizeof (int));
- return *p;
-}