1 /* PR tree-optimization/19828 */
2 typedef __SIZE_TYPE__
size_t;
3 extern size_t strlen (const char *s
);
4 extern int strncmp (const char *s1
, const char *s2
, size_t n
);
5 extern void abort (void);
7 const char *a
[16] = { "a", "bc", "de", "fgh" };
10 foo (char *x
, const char *y
, size_t n
)
13 for (i
= 0; i
< n
; i
++)
15 if (strncmp (x
+ j
, a
[i
], strlen (a
[i
])) != 0)
27 if (foo ("abcde", (const char *) 0, 3) != 0)