Hi,<br><br>This is my first post, sorry if not in the right format.<br><br>I am stuck at a place where I have a code fragment that runs in normal gcc but fails when I give -fplugin=dragonegg.so<br><br><font><span style="font-size:10pt">extern int *testfunc();<br>


<br>

extern __typeof (testfunc) testfunc __asm__ ("" "__GI_testfunc") __attribute__ ((visibility ("hidden")));<br>

<br>

extern __typeof(testfunc) __testfunc;<br>

<br>

extern __typeof (__testfunc) __testfunc __asm__ ("" "__GI___testfunc") __attribute__ ((visibility ("hidden")));<br>

<br>

int *__testfunc()<br>

{<br>

        return 0;<br>

}<br>

<br>

extern __typeof (__testfunc) __EI___testfunc __asm__("" "__testfunc"); <br>

<br>

extern __typeof (__testfunc) __EI___testfunc __attribute__((alias ("" "__GI___testfunc")));<br>

extern __typeof(__testfunc) testfunc  __attribute__ ((weak, alias ("__testfunc")));<br>

=================================================<br><br>Thanks <br></span></font>