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
/
0005-ifstmt.c
blob
2122c45ab5c60e97c584e44996bb5bbde8a9ad45
1
2
int
3
main
()
4
{
5
int
x
;
6
int
*
p
;
7
int
**
pp
;
8
9
x
=
0
;
10
p
= &
x
;
11
pp
= &
p
;
12
13
if
(*
p
)
14
return
1
;
15
if
(**
pp
)
16
return
1
;
17
else
18
**
pp
=
1
;
19
20
if
(
x
)
21
return
0
;
22
else
23
return
1
;
24
}