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
46
47
48
49
50
51
52
53
|
/*
20000703-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#include <string.h>
struct baz
{
char a[17];
char b[3];
unsigned int c;
unsigned int d;
};
void foo(struct baz *p, unsigned int c, unsigned int d)
{
memcpy (p->b, "abc", 3);
p->c = c;
p->d = d;
}
void bar(struct baz *p, unsigned int c, unsigned int d)
{
{ void *s = (p);
memset (s, '\0', sizeof (struct baz));
s; };
memcpy (p->a, "01234567890123456", 17);
memcpy (p->b, "abc", 3);
p->c = c;
p->d = d;
}
void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) // Lack of memory
struct baz p;
foo(&p, 71, 18);
if (p.c != 71 || p.d != 18)
ASSERT (0);
bar(&p, 59, 26);
if (p.c != 59 || p.d != 26)
ASSERT (0);
return;
#endif
}
|