blob: 108f0d87b74f9341689274280c4504784db6d230 (
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
|
/*
20001101-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#pragma disable_warning 88
#endif
typedef struct
{
unsigned int unchanging : 1;
} struc, *rtx;
rtx dummy ( int *a, rtx *b)
{
*a = 1;
*b = (rtx)7;
return (rtx)1;
}
void bogus (rtx insn, rtx thread, rtx delay_list)
{
rtx new_thread;
int must_annul;
delay_list = dummy ( &must_annul, &new_thread);
if (delay_list == 0 && new_thread )
{
thread = new_thread;
}
if (delay_list && must_annul)
insn->unchanging = 1;
if (new_thread != thread )
ASSERT (0);
}
void
testTortureExecute (void)
{
struc baz;
bogus (&baz, (rtx)7, 0);
return;
}
|