repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug-1294691.c
blob
b3528733419ed28c32f03ca4026357348e3f7954
1
/*
2
bug-1294691.c
3
*/
4
5
#include <testfwk.h>
6
7
unsigned char
x
=
1
;
8
unsigned char
y
=
5
;
9
int
ret
;
10
11
12
void
13
testBug
(
void
)
14
{
15
ret
=
1
;
16
17
if
(
x
)
18
{
19
if
(
y
>
3
)
20
{
21
if
(
y
<
8
)
22
{
23
}
24
}
25
else
26
{
27
}
28
}
29
else
30
{
31
ret
=
0
;
32
}
33
34
ASSERT
(
ret
==
1
);
35
}