blob: dcaa14bab41c47de67a688e5add95ffbe2a2a8e7 (
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
|
/*
930718-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
typedef struct rtx_def
{
int f1 :1;
int f2 :1;
} *rtx;
static rtx
f (register rtx orig)
{
if (orig->f1 || orig->f2)
return orig;
orig->f2 = 1;
return orig;
}
void
f2 ()
{
ASSERT (0);
}
void
testTortureExecute (void)
{
struct rtx_def foo;
rtx bar;
foo.f1 = 1;
foo.f2 = 0;
bar = f (&foo);
if (bar != &foo || bar->f2 != 0)
ASSERT (0);
return;
}
|