
27 Mar
2019
27 Mar
'19
12:13 p.m.
On 3/27/19 4:49 PM, Michal Privoznik wrote:
Okay, thanks for detailed explanation. I'll probably go with what Dan sugested and make virQEMUCapsSetVAList inline then. It looks safer and more portable.
Actually, that does not work. Because even if I mark the function 'inline' gcc still produces assembly code that calls the function. So I've tried to come around that using attribute always_inline. But for some reason it is still not working. I guess at this point, it's the best to just drop the virQEMUCapsSetVAList() completely. Michal