aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr79413.c
blob: 602a974c9bea9e7a64325ec8f4e0ab0f0ed072f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR c/79413 */

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

void
bar (void)
{
  foo ();
}