blob: f19804bfb3f4046e985ae3a0dfe471f0878cfabd (
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
|
/*
20081103-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#include <string.h>
// TODO: Enable when sdcc can pass structures as paramters.
struct S { char c; char arr[4]; float f; };
char A[4] = { '1', '2', '3', '4' };
#if 0
void foo (struct S s)
{
if (memcmp (s.arr, A, 4))
ASSERT (0);
}
#endif
void
testTortureExecute (void)
{
#if 0
struct S s;
memcpy (s.arr, A, 4);
foo (s);
return;
#endif
}
|