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
PR target/83368
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vla-23.c
blob
47be4123301e2aa83cf6d65332b78bca592ddd27
1
/* PR rtl-optimization/50615 */
2
/* Testcase by Zdenek Sojka <zsojka@seznam.cz> */
3
4
/* { dg-do compile } */
5
/* { dg-options "-O --param max-cse-insns=1" } */
6
7
int
8
foo
(
int
a
)
9
{
10
if
(!
a
)
11
return
1
;
12
13
{
14
int
s
[
a
];
15
return
0
;
16
}
17
}