cmd/compile: remove typechecklist
Convert remaining uses to typecheckslice.
Passes toolstash -cmp.
Change-Id: I6ed0877386fb6c0b036e8ee5a228433343855abd
Reviewed-on: https://go-review.googlesource.com/20905
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Dave Cheney <dave@cheney.net>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/src/cmd/compile/internal/gc/walk.go b/src/cmd/compile/internal/gc/walk.go
index 587914b..a4fa607 100644
--- a/src/cmd/compile/internal/gc/walk.go
+++ b/src/cmd/compile/internal/gc/walk.go
@@ -2022,7 +2022,7 @@
calls = append(calls, mkcall("printunlock", nil, init))
- typechecklist(calls, Etop)
+ typecheckslice(calls, Etop)
walkexprlist(calls, init)
r = Nod(OEMPTY, nil, nil)
@@ -2890,7 +2890,7 @@
l = append(ln.Slice(), nt)
}
- typechecklist(l, Etop)
+ typecheckslice(l, Etop)
walkstmtlist(l)
init.Append(l...)
return s
@@ -2987,7 +2987,7 @@
}
}
- typechecklist(l, Etop)
+ typecheckslice(l, Etop)
walkstmtlist(l)
init.Append(l...)
return ns
@@ -3053,7 +3053,7 @@
nwid = Nod(OMUL, nwid, Nodintconst(nl.Type.Type.Width))
l = append(l, mkcall1(fn, nil, init, nto, nfrm, nwid))
- typechecklist(l, Etop)
+ typecheckslice(l, Etop)
walkstmtlist(l)
init.Append(l...)
return nlen
@@ -4009,7 +4009,7 @@
funcbody(fn)
typecheck(&fn, Etop)
- typechecklist(fn.Nbody.Slice(), Etop)
+ typecheckslice(fn.Nbody.Slice(), Etop)
xtop = append(xtop, fn)
Curfn = oldfn