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
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0037-assignop.c
blob
df5cb8909f96a616a26c35a9714aef510d425848
1
2
int
3
main
()
4
{
5
int
x
;
6
7
x
=
0
;
8
x
+=
2
;
9
x
+=
2
;
10
if
(
x
!=
4
)
11
return
1
;
12
x
-=
3
;
13
if
(
x
!=
1
)
14
return
2
;
15
16
return
0
;
17
}