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
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
valdiag
/
tests
/
cflow.c
blob
b584550114ae17f20aff8cbd4eee89e1a8899224
1
2
int
x
;
3
4
#ifdef TEST0
5
void
foo
(
void
)
6
{
7
while
(
1
) ;
8
}
9
#endif
10
11
#ifdef TEST1
12
void
foo
(
void
)
13
{
14
while
(
1
) ;
15
x
++;
/* WARNING(SDCC) */
16
}
17
#endif
18
19
#ifdef TEST2
20
void
foo
(
void
)
21
{
22
int
y
=
1
;
23
while
(
y
) ;
/* WARNING(SDCC) */
24
x
++;
/* WARNING(SDCC) */
25
}
26
#endif