crypto/bn256: eliminate dead store

This commit is contained in:
cuiweixie 2023-08-17 15:49:22 +08:00 committed by weixiecui
parent 32fde3f838
commit 2a55b8d646

View file

@ -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
}