index
:
cbb-gcc-4.6.4
main
compiler building blocks: cbb-gcc-4.6.4: including full support for the midipix targets
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
gcc
/
testsuite
/
gcc.c-torture
/
unsorted
/
aaa.c
blob: e31fb567c1c597d8c854d5ed34bcba59f7aa7c3d (
plain
)
1
2
3
4
5
6
7
8
9
10
11
foo
(
a
,
b
)
{
int
t
;
while
(
b
<
0
)
{
t
=
a
;
a
=
b
;
b
=
t
;
}
return
a
+
b
;
}