search for: __ei___testfunc

Displaying 2 results from an estimated 2 matches for "__ei___testfunc".

2013 Jan 26
2
[LLVMdev] Code compiling in gcc but not llvm
...tribute__ ((visibility ("hidden"))); extern __typeof(testfunc) __testfunc; extern __typeof (__testfunc) __testfunc __asm__ ("" "__GI___testfunc") __attribute__ ((visibility ("hidden"))); int *__testfunc() { return 0; } extern __typeof (__testfunc) __EI___testfunc __asm__("" "__testfunc"); extern __typeof (__testfunc) __EI___testfunc __attribute__((alias ("" "__GI___testfunc"))); extern __typeof(__testfunc) testfunc __attribute__ ((weak, alias ("__testfunc"))); ==============================================...
2013 Jan 27
0
[LLVMdev] Code compiling in gcc but not llvm
...extern __typeof(testfunc) __testfunc; > > extern __typeof (__testfunc) __testfunc __asm__ ("" "__GI___testfunc") > __attribute__ ((visibility ("hidden"))); > > int *__testfunc() > { > return 0; > } > > extern __typeof (__testfunc) __EI___testfunc __asm__("" "__testfunc"); > > extern __typeof (__testfunc) __EI___testfunc __attribute__((alias ("" > "__GI___testfunc"))); > extern __typeof(__testfunc) testfunc __attribute__ ((weak, alias > ("__testfunc"))); > =================...