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
/
0010-goto.c
blob
d5bfbbffdc97f39b47257e653afa82b2dfc03754
1
int
2
main
()
3
{
4
start
:
5
goto
next
;
6
return
1
;
7
success
:
8
return
0
;
9
next
:
10
foo
:
11
goto
success
;
12
return
1
;
13
}