crypto/bn256: eliminate dead store (#27944)

pull/27995/head
cui 1 year ago committed by GitHub
parent e3f3e01504
commit 4abc412348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      crypto/bn256/cloudflare/optate.go

@ -199,9 +199,8 @@ func miller(q *twistPoint, p *curvePoint) *gfP12 {
r = newR
r2.Square(&minusQ2.y)
a, b, c, newR = lineFunctionAdd(r, minusQ2, bAffine, r2)
a, b, c, _ = lineFunctionAdd(r, minusQ2, bAffine, r2)
mulLine(ret, a, b, c)
r = newR
return ret
}

Loading…
Cancel
Save