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
We should update compilebench to measure the cost of cmd/vet analysis.
go install cmd/vet
for i in 1 2 3 4 5
do
go clean -cache
time go vet std >/dev/null 2>&1 # clean build
time go vet std >/dev/null 2>&1 # noop incremental build
done
We should update compilebench to measure the cost of cmd/vet analysis.