summary refs log tree commit diff
path: root/string/bug-strchr1.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/bug-strchr1.c')
-rw-r--r--string/bug-strchr1.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/string/bug-strchr1.c b/string/bug-strchr1.c
deleted file mode 100644
index 21155d8a7f..0000000000
--- a/string/bug-strchr1.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-
-static int
-do_test (void)
-{
-  char s[] __attribute__((aligned(16))) = "\xff";
-  char *p = strchr (s, '\xfe');
-  printf ("%p\n", p);
-  return p != NULL;
-}
-
-#define TEST_FUNCTION do_test ()
-#include "../test-skeleton.c"