diff --git a/go/pointer/analysis.go b/go/pointer/analysis.go index f3b70f13..d02e5369 100644 --- a/go/pointer/analysis.go +++ b/go/pointer/analysis.go @@ -255,7 +255,7 @@ func Analyze(config *Config) (result *Result, err error) { // (This only checks that the package scope is complete, // not that func bodies exist, but it's a good signal.) if !pkg.Object.Complete() { - return nil, fmt.Errorf(`pointer analysis requires a complete program yet package %q was incomplete (don't set loader.Config.ImportFromBinary during loading)`, pkg.Object.Path()) + return nil, fmt.Errorf(`pointer analysis requires a complete program yet package %q was incomplete`, pkg.Object.Path()) } }