aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr79413.c
blob: 6fc66d5ce30c6e9036803b16116b0b5153eb4235 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-require-effective-target alloca } */
/* PR c/79413 */

void
foo ()
{
  int a[1/0];
}

void
bar (void)
{
  foo ();
}