Yiding Cui
Results
65
comments of
Yiding Cui
```go //go:noinline func doNoDefer(t *int) { *t++ *t++ } //go:noinline func doDefer(t *int) { defer func() { *t++ }() *t++ } func BenchmarkDeferYes(b *testing.B) { t := 0 for i...