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
/
0076-ptrsubasn.c
blob
45cb5daf9815de2c065bd64ecc2930aced4f33de
1
2
int
3
main
()
4
{
5
int
arr
[
2
];
6
int
*
p
;
7
8
p
= &
arr
[
1
];
9
p
-=
1
;
10
*
p
=
123
;
11
12
if
(
arr
[
0
] !=
123
)
13
return
1
;
14
return
0
;
15
}