------- Comment #2 from d dot g dot gorbachev at gmail dot com  2009-01-17 
23:20 -------
ok.c:

void __attribute__((dllimport,fastcall)) h(int);

void f(int i)
{
    static void (__attribute__((fastcall)) *g)(int);

    g = h;

    g(i);
    g(i);
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38900

Reply via email to