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
RISC-V: Add support for riscv-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
991127-1.c
blob
86098d883a51c6c7d5e99475d97b661a63732b0f
1
2
extern
void
foo
(
int
*);
3
4
static void
bar
(
char
*
buf
)
5
{
6
int
a
;
7
foo
(&
a
);
8
while
(
a
>
0
) {
9
*
buf
++ =
'0'
;
10
a
--;
11
}
12
}