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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0066-cppelse.c
blob
5020fb21454af3bf3580547e747d7c45c6011a0a
1
#define BAR 0
2
#ifdef BAR
3
#ifdef FOO
4
XXX
5
#ifdef FOO
6
XXX
7
#endif
8
#else
9
#define FOO
10
#ifdef FOO
11
int
x
=
BAR
;
12
#endif
13
#endif
14
#endif
15
16
int
17
main
()
18
{
19
return
BAR
;
20
}