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
c++: 'this' capture clobbered during recursive inst [PR116756]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
shrink-wrap-alloca.c
blob
b9a2af1c51bc34c05b036e2f60b02a5e0c773770
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -g" } */
3
/* { dg-require-effective-target alloca } */
4
5
int
*
p
;
6
7
void
8
test
(
int
a
)
9
{
10
if
(
a
>
0
)
11
p
=
__builtin_alloca
(
4
);
12
}