search for: wrapper_foo

Displaying 1 result from an estimated 1 matches for "wrapper_foo".

2009 May 20
2
[LLVMdev] jump to function
Hello, Is it possible to jump from one function to the beginning of another function? For instance, assume wrapper_FOO is a wrapper for FOO. I replace the code .............................. bar() { FOO(...) } .............................. with .............................. bar() { wrapper_FOO(...) } .............................. Now, for efficiency, I'd like to have wrapper_FOO() { <do some work&...