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
/
0094-inferredarraysize.c
blob
31758d8abe40cba673e48acba57d532e3387e1c0
1
2
3
int
a
[] = {
1
,
2
,
3
,
4
};
4
5
int
6
main
()
7
{
8
if
(
sizeof
(
a
) !=
4
*
sizeof
(
int
))
9
return
1
;
10
11
return
0
;
12
}