comparison gcc/testsuite/gcc.dg/vla-23.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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 }