Skip to content

Commit

Permalink
eliminate dead store
Browse files Browse the repository at this point in the history
  • Loading branch information
cuiweixie authored and armfazh committed Aug 23, 2023
1 parent 673829d commit c6407b1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions optate.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,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
}
Expand Down

0 comments on commit c6407b1

Please sign in to comment.