Commit f46324cf authored by Austin Clements's avatar Austin Clements

cmd/compile: remove unused writebarrierptr, typedmemmove Nodes

Now that SSA's write barrier pass is generating calls to these,
compile doesn't need to look them up.

Change-Id: Ib50e5f2c67b247ca280d467c399e23877988bc12
Reviewed-on: https://go-review.googlesource.com/32170
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarCherry Zhang <cherryyz@google.com>
parent a0cf021b
......@@ -380,7 +380,4 @@ var panicdivide *Node
var growslice *Node
var writebarrierptr *Node
var typedmemmove *Node
var panicdottype *Node
......@@ -303,8 +303,6 @@ func compile(fn *Node) {
panicslice = Sysfunc("panicslice")
panicdivide = Sysfunc("panicdivide")
growslice = Sysfunc("growslice")
writebarrierptr = Sysfunc("writebarrierptr")
typedmemmove = Sysfunc("typedmemmove")
panicdottype = Sysfunc("panicdottype")
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment