blob: 7f547f6928de993f8be2940efb47184d12a9bcef [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
struct S
{
void* sp;
};
void* f ()
{
struct S s = { &s.sp };
return s.sp;
}