aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/20031218-2.c
blob: 497c963d27b3dc77aa4d2499bf3944aa85edb10e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Orgin: Richard Sandiford <rsandifo@gcc.gnu.org> 
   PR debug/12923  ICE in gen_subprogram_die with -O2 -g
   The problem was that this just to ICE with -O2 -g.  */

/* { dg-do compile } */
/* { dg-options "-O2 -g" } */

int f1 (int y)
{
  int f2() { return y; }
  return f2();
}