blob: e767081bd9ecc5bf9c925bb0a98e1b321e5a002e (
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
46
47
48
49
50
|
/*
20090527-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
typedef enum { POSITION_ASIS, POSITION_UNSPECIFIED } unit_position;
typedef enum { STATUS_UNKNOWN, STATUS_UNSPECIFIED } unit_status;
typedef struct
{
unit_position position;
unit_status status;
} unit_flags;
extern void abort (void);
void
new_unit (unit_flags * flags)
{
if (flags->status == STATUS_UNSPECIFIED)
flags->status = STATUS_UNKNOWN;
if (flags->position == POSITION_UNSPECIFIED)
flags->position = POSITION_ASIS;
switch (flags->status)
{
case STATUS_UNKNOWN:
break;
default:
ASSERT (0);
}
}
void
testTortureExecute (void)
{
unit_flags f;
f.status = STATUS_UNSPECIFIED;
new_unit (&f);
return;
}
|