blob: a4ea16d142cfb0c812111cce062c0d8db86881cb (
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
|
/*
pr42142.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
int
sort(int L)
{
int end[2] = { 10, 10, }, i=0, R;
while (i<2)
{
R = end[i];
if (L<R)
{
end[i+1] = 1;
end[i] = 10;
++i;
}
else
break;
}
return i;
}
void
testTortureExecute (void)
{
if (sort (5) != 1)
ASSERT (0);
return;
}
|