Re: Re: Question about function body and function specialization

2020-07-16 Thread Martin Jambor
Hi, On Wed, Jul 15 2020, Erick Ochoa wrote: > On 15.07.20 05:03, Martin Jambor wrote: [...] >> At IPA time, the best way is always to look at the call graph edges, >> something like: >> >> cgraph_edge *cs = caller_cgraph_node->get_edge (s); >> examine (e->callee); >> >> Note that if th

Re: Re: Question about function body and function specialization

2020-07-15 Thread Erick Ochoa
On 15.07.20 05:03, Martin Jambor wrote: Hi, On Tue, Jul 14 2020, Erick Ochoa wrote: On 14/07/2020 12:37, Erick Ochoa wrote: Hello, I have a function foo defined on a source file. Sometimes, a function pointer pointing to foo is passed as a parameter to other functions where foo is called i