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
/
0016-addrarray.c
blob
9db7edb5534b6e21774233a7447bae8b230d8870
1
int
2
main
()
3
{
4
int
arr
[
2
];
5
int
*
p
;
6
7
p
= &
arr
[
1
];
8
*
p
=
0
;
9
return
arr
[
1
];
10
}