blob: 33b6dd64f3d7b19e126f5338f150a713bf791a49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
20050218-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#include <string.h>
#if !defined(__SDCC_pdk14) // Lack of memory
/* PR tree-optimization/19828 */
const char *a[16] = { "a", "bc", "de", "fgh" };
int
foo (char *x, const char *y, size_t n)
{
size_t i, j = 0;
for (i = 0; i < n; i++)
{
if (strncmp (x + j, a[i], strlen (a[i])) != 0)
return 2;
j += strlen (a[i]);
if (y)
j += strlen (y);
}
return 0;
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) // Lack of memory
if (foo ("abcde", (const char *) 0, 3) != 0)
ASSERT (0);
return;
#endif
}
|