2 20000703-1.c from the execute part of the gcc torture tests.
21 void foo(struct baz
*p
, unsigned int c
, unsigned int d
)
23 memcpy (p
->b
, "abc", 3);
28 void bar(struct baz
*p
, unsigned int c
, unsigned int d
)
31 memset (s
, '\0', sizeof (struct baz
));
33 memcpy (p
->a
, "01234567890123456", 17);
34 memcpy (p
->b
, "abc", 3);
40 testTortureExecute (void)
42 #if !defined(__SDCC_pdk14) // Lack of memory
45 if (p
.c
!= 71 || p
.d
!= 18)
48 if (p
.c
!= 59 || p
.d
!= 26)