blob: e42fe8d13c0f293774916516cc452c71e80a5321 (
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
44
45
|
/*
20060412-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#if !defined(__SDCC_mcs51) && !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
struct S
{
long o;
};
struct T
{
long o;
struct S m[82];
};
struct T t;
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_mcs51) && !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
struct S *p, *q;
p = (struct S *) &t;
p = &((struct T *) p)->m[0];
q = p + 82;
while (--q > p)
q->o = -1;
q->o = 0;
if (q > p)
ASSERT (0);
if (q - p > 0)
ASSERT (0);
return;
#endif
}
|