remove duplicated arch

This commit is contained in:
Emman 2021-12-23 09:52:27 +08:00
parent c73064c24a
commit b8dc2f97c6

View File

@ -1,4 +1,4 @@
//go:build amd64 || arm64 || ppc64le || ppc64le //go:build amd64 || arm64 || ppc64le
// +build amd64 arm64 ppc64le // +build amd64 arm64 ppc64le
package sm2 package sm2
@ -47,4 +47,4 @@ func TestFuzz(t *testing.T) {
t.Fatalf("ScalarMult does not match reference result with scalars: %x and %x, please report this error to https://github.com/emmansun/gmsm/issues", scalar1, scalar2) t.Fatalf("ScalarMult does not match reference result with scalars: %x and %x, please report this error to https://github.com/emmansun/gmsm/issues", scalar1, scalar2)
} }
} }
} }