blob: ab6d2d9ac94bc921d8733c110e0c6019f604945e (
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
|
/*
pr77766.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
char a;
short b, d = 5, h;
char c[1];
int e, f = 4, g, j;
void
testTortureExecute (void) {
int i;
for (; f; f = a) {
g = 0;
for (; g <= 32; ++g) {
i = 0;
for (; i < 3; i++)
while (1 > d)
if (c[b])
break;
L:
if (j)
break;
}
}
e = 0;
for (; e; e = 0) {
d++;
for (; h;)
goto L;
}
return;
}
|