go/ssa: reduce set of expected indirect imports

...now that gc's export data records fewer dependencies.

Change-Id: Ie0f68f1f7b0825f6d2c100dfe189be017383db60
Reviewed-on: https://go-review.googlesource.com/22584
Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
Alan Donovan 2016-04-28 17:38:59 -04:00
parent c5c16cf68a
commit 686d0ad5b8
1 changed files with 3 additions and 2 deletions

View File

@ -69,8 +69,9 @@ func main() {
deps := []string{ deps := []string{
// directly imported dependencies: // directly imported dependencies:
"bytes", "io", "testing", "bytes", "io", "testing",
// indirect dependencies (partial list): // indirect dependencies mentioned by
"errors", "fmt", "os", "runtime", // the direct imports' export data
"sync", "unicode", "time",
} }
prog := mainPkg.Prog prog := mainPkg.Prog