aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr67563.c
blob: 5a727b832fb4ef25a2d532691f601edaf752e449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-O2 -fexceptions" } */
/* { dg-require-effective-target exceptions } */

static void
emit_package (int p1)
{
  int a;
  int b[0];
  a = __fprintf_chk (0, 0, "");
}
void emit_lua () { emit_package (0); }