summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/chkp-pr69044.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/chkp-pr69044.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/chkp-pr69044.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/testsuite/gcc.target/i386/chkp-pr69044.c b/gcc/testsuite/gcc.target/i386/chkp-pr69044.c
deleted file mode 100644
index 16751f51766..00000000000
--- a/gcc/testsuite/gcc.target/i386/chkp-pr69044.c
+++ /dev/null
@@ -1,10 +0,0 @@
-/* { dg-do compile { target { ! x32 } } } */
-/* { dg-options "-fcheck-pointer-bounds -mmpx -O2" } */
-
-int i;
-int strncasecmp (char *p1, char *p2, long p3) { return 0; }
-int special_command ()
-{
- if (strncasecmp (0, 0, 0))
- i++;
-}