This CL is generated by CL 686821.
Change-Id: I4bc4fa717ff858299b13955a40e750709a796fba
Reviewed-on: https://go-review.googlesource.com/c/go/+/686998
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Junyang Shao <shaojunyang@google.com>
// Greater compares for greater than.
//
// Asm: VPCMPGTQ, CPU Feature: AVX
-func (x Int64x2) Greater(y Int64x2) Int64x2
+func (x Int64x2) Greater(y Int64x2) Mask64x2
// Greater compares for greater than.
//
gotv = vec0.And(vec1)
case "AndNot":
gotv = vec0.AndNot(vec1)
- case "Greater":
- gotv = vec0.Greater(vec1)
case "Max":
gotv = vec0.Max(vec1)
case "Min":
switch which {
case "Equal":
gotv = vec0.Equal(vec1).AsInt64x2()
+ case "Greater":
+ gotv = vec0.Greater(vec1).AsInt64x2()
case "GreaterEqual":
gotv = vec0.GreaterEqual(vec1).AsInt64x2()
case "Less":