summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/chkp-bndret.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/chkp-bndret.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/chkp-bndret.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/testsuite/gcc.target/i386/chkp-bndret.c b/gcc/testsuite/gcc.target/i386/chkp-bndret.c
deleted file mode 100644
index d84ea70dcda..00000000000
--- a/gcc/testsuite/gcc.target/i386/chkp-bndret.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* { dg-do compile { target { ! x32 } } } */
-/* { dg-options "-fcheck-pointer-bounds -mmpx -O2 -fdump-tree-chkp" } */
-/* { dg-final { scan-tree-dump-not "bndret" "chkp" } } */
-
-#include "string.h"
-
-extern int *test1 (int *p) __attribute__((bnd_legacy));
-
-int *
-test2 (int *p)
-{
- return test1 (p);
-}