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
2013-10-21 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr48098.c
blob
cd72939374fac61fcf4d2177b428113cb36c37e2
1
/* { dg-do compile } */
2
3
void
4
foo
(
int
n
)
5
{
6
static char
*
__restrict
*
p
;
7
int
i
;
8
p
=
__builtin_malloc
(
n
);
9
for
(
i
=
0
;
i
<
n
;
i
++)
10
p
[
i
] =
0
;
11
}
12