You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
runtime: Don't value copy structs from pointers on property access
Adds a test with a 10mb struct passed by a pointer, it would be previously
copied on property accessed whereas now the accesses just go through the
pointer without a copy.
Previous:
Benchmark_largeStructAccess-4 200 7914350 ns/op
After:
Benchmark_largeStructAccess-4 2000000 912 ns/op
0 commit comments