crypto/aes: correct 'noescape' typo in s390x

Change-Id: I9e24a28b4daee5d6e1e4769547922a1a253b4ffc
Reviewed-on: https://go-review.googlesource.com/34377
Reviewed-by: Michael Munday <munday@ca.ibm.com>
This commit is contained in:
Euan Kemp 2016-12-13 21:49:09 -08:00 committed by Michael Munday
parent 232991e8a7
commit fe07091f9e
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ type aesCipherAsm struct {
// cryptBlocks invokes the cipher message (KM) instruction with
// the given function code. This is equivalent to AES in ECB
// mode. The length must be a multiple of BlockSize (16).
//go:noesape
//go:noescape
func cryptBlocks(c code, key, dst, src *byte, length int)
var useAsm = cipherhw.AESGCMSupport()