From fe07091f9eb9a1dcedc6eab1762de5383f520a00 Mon Sep 17 00:00:00 2001 From: Euan Kemp Date: Tue, 13 Dec 2016 21:49:09 -0800 Subject: [PATCH] crypto/aes: correct 'noescape' typo in s390x Change-Id: I9e24a28b4daee5d6e1e4769547922a1a253b4ffc Reviewed-on: https://go-review.googlesource.com/34377 Reviewed-by: Michael Munday --- src/crypto/aes/cipher_s390x.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/aes/cipher_s390x.go b/src/crypto/aes/cipher_s390x.go index 6030c25ee3..28d0ac90cf 100644 --- a/src/crypto/aes/cipher_s390x.go +++ b/src/crypto/aes/cipher_s390x.go @@ -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() -- 2.50.0