about 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, 14 insertions, 0 deletions
diff --git a/string/bug-strchr1.c b/string/bug-strchr1.c
new file mode 100644
index 0000000000..21155d8a7f
--- /dev/null
+++ b/string/bug-strchr1.c
@@ -0,0 +1,14 @@
+#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"