solana-labs / rbpf

Rust virtual machine and JIT compiler for eBPF programs
Apache License 2.0
277 stars 169 forks source link

Do not pass `SBPFVersion` by reference #623

Closed LucasSte closed 1 week ago

LucasSte commented 1 week ago

SBPFVersion is represented as an integer, so using it with references is inefficient. We can remove all references and copy it everywhere.