internal/radix51: actually apply go:noescape

This commit is contained in:
Filippo Valsorda 2019-03-30 21:56:34 -04:00 committed by George Tankersley
parent 09d9129779
commit ce6d218ef3
2 changed files with 2 additions and 2 deletions

View File

@ -12,5 +12,5 @@ func (v *FieldElement) Mul(x, y *FieldElement) *FieldElement {
return v
}
// go:noescape
//go:noescape
func feMul(out, a, b *FieldElement)

View File

@ -12,5 +12,5 @@ func (v *FieldElement) Square(x *FieldElement) *FieldElement {
return v
}
// go:noescape
//go:noescape
func feSquare(out, x *FieldElement)