blob: 9a82fcf72124845b1b33d920f5a73a9d260b7396 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-O2" }
// Origin: Mark Mitchell <mitchell@codesourcery.com>
inline void f ()
{
int n;
int i[n];
}
void g ()
{
f ();
}
void h ()
{
f ();
}