2 20050218-1.c from the execute part of the gcc torture suite.
13 #if !defined(__SDCC_pdk14) // Lack of memory
15 /* PR tree-optimization/19828 */
17 const char *a
[16] = { "a", "bc", "de", "fgh" };
20 foo (char *x
, const char *y
, size_t n
)
23 for (i
= 0; i
< n
; i
++)
25 if (strncmp (x
+ j
, a
[i
], strlen (a
[i
])) != 0)
36 testTortureExecute (void)
38 #if !defined(__SDCC_pdk14) // Lack of memory
39 if (foo ("abcde", (const char *) 0, 3) != 0)