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
/
0097-tentative.c
blob
1184b851f7ef499497e69a5e2123ade6411c9269
1
2
int
x
;
3
int
x
=
3
;
4
int
x
;
5
6
int
main
();
7
8
void
*
9
foo
()
10
{
11
return
&
main
;
12
}
13
14
int
15
main
()
16
{
17
if
(
x
!=
3
)
18
return
0
;
19
20
x
=
0
;
21
return
x
;
22
}
23