blob: 8492327b8785a38891d48a21348cca02ea43378a (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* bug-895992.c
Life Range problem with
- uninitialized variable
- loop
- conditional block
LR problem hits all ports, but this test is mcs51 specific
*/
#include <testfwk.h>
char p0 = 2;
unsigned short loops;
static void
wait (void)
{
long i, j;
/* just clobber all registers: */
for (i = 0; i < 2; ++i)
for (j = 0; j < 2; ++j)
;
}
#if !defined(PORT_HOST)
# pragma disable_warning 84
#endif
static void
testLR (void)
{
unsigned char number;
unsigned char start = 1;
unsigned char i;
do
{
for (i = 1; i > 0 ; i--)
wait (); /* destroys all registers */
if (start)
{
number = p0;
start = 0;
}
number--; /* 'number' might be used before initialization */
/* the life range of 'number' must be extended to */
/* the whole loop _including_ the conditional block */
++loops;
}
while (number != 0);
ASSERT (loops == p0);
}
|