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
/
0106-bnot.c
blob
464e7f24edff1cb2968808879c2eca0039374cca
1
2
3
int
4
main
()
5
{
6
int
x
;
7
long long
l
;
8
9
x
=
0
;
10
l
=
0
;
11
12
x
= ~
x
;
13
if
(
x
!=
0xffffffff
)
14
return
1
;
15
16
l
= ~
l
;
17
if
(
x
!=
0xffffffffffffffff
)
18
return
2
;
19
20
21
return
0
;
22
}