On 1/5/19 7:43 AM, Nick Renieris wrote: > Just curious, why is gvec-desc a bitfield instead of a normal struct? > Surely it'd be more readable that way. Also this is C, so it's not > even a typed bitfield, just a uint32. I'm guessing there's a reason > behind this?
As an integer it is always passed by value. As a structure some host abis pass it by reference, and the TCG compiler doesn't know about that. r~