mirror of
https://github.com/golang/go
synced 2024-11-20 06:54:42 -07:00
crypto/elliptic: temporarily disable s390x assembly
This disables the s390x assembly. It will be re-enabled when #20215 is resolved on s390x. Change-Id: I789eca2dd478004956107359fae98ed012f04abb Reviewed-on: https://go-review.googlesource.com/62292 Run-TryBot: Michael Munday <mike.munday@ibm.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
parent
98603e7af6
commit
818353022e
@ -32,7 +32,10 @@ func hasVectorFacility() bool
|
||||
var hasVX = hasVectorFacility()
|
||||
|
||||
func initP256Arch() {
|
||||
if hasVX {
|
||||
// Assembly implementation is temporarily disabled until issue
|
||||
// #20215 is fixed.
|
||||
// if hasVX {
|
||||
if false {
|
||||
p256 = p256CurveFast{p256Params}
|
||||
initTable()
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user