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
/
0036-notneg.c
blob
e8bf709fede35eec44ebe0dc7775e163f6c2da98
1
int
2
main
()
3
{
4
int
x
;
5
6
x
=
4
;
7
if
(!
x
!=
0
)
8
return
1
;
9
if
(!!
x
!=
1
)
10
return
1
;
11
if
(-
x
!=
0
-
4
)
12
return
1
;
13
return
0
;
14
}
15