fix issue

This commit is contained in:
emmansun 2022-01-01 20:32:03 +08:00
parent 608a6c9491
commit 9a4a10bbc7

View File

@ -1,6 +1,13 @@
//go:build arm64
// +build arm64
package sm4
import (
"reflect"
"testing"
)
//go:noescape
func tblAsm(in, imm, out *byte)
@ -13,4 +20,4 @@ func TestTblAsm(t *testing.T) {
if !reflect.DeepEqual(out, imm) {
t.Errorf("expected=%v, result=%v\n", imm, out)
}
}
}