blob: bb780dbbae9fba1acc7e4f78338bd4c7d13b4cd6 (
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
|
/*
950714-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#pragma disable_warning 85
#endif
int array[10] = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1};
void
testTortureExecute (void)
{
int i, j;
int *p;
for (i = 0; i < 10; i++)
for (p = &array[0]; p != &array[9]; p++)
if (*p == i)
goto label;
label:
if (i != 1)
ASSERT (0);
return;
}
|