]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/vla-23.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / vla-23.c
CommitLineData
bd8c998f
EB
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
7int
8foo (int a)
9{
10 if (!a)
11 return 1;
12
13 {
14 int s[a];
15 return 0;
16 }
17}