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
/
0040-cast.c
blob
a2ebba3ab4121426c8607e3d7dca546152479c80
1
2
int
3
main
()
4
{
5
void
*
p
;
6
int
x
;
7
8
x
=
2
;
9
p
= &
x
;
10
11
if
(*((
int
*)
p
) !=
2
)
12
return
1
;
13
return
0
;
14
}