Hello,
I have been following the Go Runtime and Compiler team meeting notes for a while. In the recent notes, I noticed something that got my attention regarding memory layout optimization for structures.
I'm working on some code that interfaces with C libraries without directly utilizing the CGo tool (for portability reasons). Currently, I'm adding padding fields manually for C structs like
struct {a int32; _ [4]byte}
Would this behavior be affected?