search for: e6a62892

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

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() {