]> Cypherpunks repositories - gostls13.git/commitdiff
crypto/aes: correct 'noescape' typo in s390x
authorEuan Kemp <euank@euank.com>
Wed, 14 Dec 2016 05:49:09 +0000 (21:49 -0800)
committerMichael Munday <munday@ca.ibm.com>
Wed, 14 Dec 2016 16:10:22 +0000 (16:10 +0000)
Change-Id: I9e24a28b4daee5d6e1e4769547922a1a253b4ffc
Reviewed-on: https://go-review.googlesource.com/34377
Reviewed-by: Michael Munday <munday@ca.ibm.com>
src/crypto/aes/cipher_s390x.go

index 6030c25ee37b82a9ed8adc180958a1b54f307e78..28d0ac90cf3c42040fc11337ce8fd2c2d1e23598 100644 (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()