blob: 46c59fd450ce0f8472ab71034516fd6c781e3d17 (
plain)
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
|
/*
950628-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
// TODO: Enable when sdcc supports struct return!
#if 0
typedef struct
{
char hours, day, month;
short year;
} T;
T g (void)
{
T now;
now.hours = 1;
now.day = 2;
now.month = 3;
now.year = 4;
return now;
}
T f (void)
{
T virk;
virk = g ();
return virk;
}
#endif
void
testTortureExecute (void)
{
#if 0
if (f ().hours != 1 || f ().day != 2 || f ().month != 3 || f ().year != 4)
ASSERT (0);
return;
#endif
}
|