Displaying 1 result from an estimated 1 matches for "some_static".
2009 Oct 22
1
[LLVMdev] need to access static functions as extern
Hello,
I write some instrumentation which needs to call static function from other files.
Is there a way to associate a global name/alias to a static function?
I need to turn the assembly code
.align 16
.type some_static.2467, at function
some_static.2467:
CODE
into
.align 16
.type some_static.2467, at function
some_static.2467:
.align 16
.globl some_extern_alias.2467
.type some_extern_alias.2467, at function
some_extern_alias.2467:
CODE
and now I can call some_ext...