blob: bad66f3a1ed5d455cdfc3d120c9dc0b758d9cfae [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
// Special g++ Options: -O2
inline void f ()
{
return;
}
inline void g ();
void (*gp)() = &g;
inline void g ()
{
f ();
}
extern int array_size;
void h ()
{
int lookup_array[array_size];
g ();
}