runtime: get rid of goalg, no longer needed

The goalg function was a holdover from when we had algorithm
tables in both C and Go.  It is no longer needed.

Change-Id: Ia0c1af35bef3497a899f22084a1a7b42daae72a0
Reviewed-on: https://go-review.googlesource.com/2099
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Keith Randall 2014-12-27 20:32:11 -08:00
parent 2c987e1693
commit b1f29b2d44
5 changed files with 21 additions and 25 deletions

View file

@ -16,7 +16,7 @@ type _type struct {
align uint8
fieldalign uint8
kind uint8
alg unsafe.Pointer
alg *typeAlg
// gc stores _type info required for garbage collector.
// If (kind&KindGCProg)==0, then gc[0] points at sparse GC bitmap
// (no indirection), 4 bits per word.