repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
scc.c
blob
79ae4e12f45de8390baa3f736045b12e3118d312
1
foo
(
a
,
b
)
2
{
3
if
(
a
<
0
)
4
goto
ret1
;
5
if
(
a
==
0
)
6
return
2
;
7
return
3
;
8
ret1
:
9
return
1
;
10
}
11