Skip to content

Commit

Permalink
build: make linter happier
Browse files Browse the repository at this point in the history
  • Loading branch information
gbotrel committed Sep 23, 2024
1 parent 0c0486d commit 0d60d49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions field/generator/asm/amd64/element_mul.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func (f *FFAmd64) generateMul(forceADX bool) {
registers := f.FnHeader("mul", stackSize, argSize, reserved...)
defer f.AssertCleanStack(stackSize, minStackSize)

f.WriteLn(fmt.Sprintf(`
f.WriteLn(`
// the algorithm is described in the Mul declaration (.go)
// however, to benefit from the ADCX and ADOX carry chains
// we split the inner loops in 2:
Expand All @@ -164,7 +164,7 @@ func (f *FFAmd64) generateMul(forceADX bool) {
// for j=1 to N-1
// (C,t[j-1]) := t[j] + m*q[j] + C
// t[N-1] = C + A
`))
`)
if stackSize > 0 {
f.WriteLn("NO_LOCAL_POINTERS")
}
Expand Down

0 comments on commit 0d60d49

Please sign in to comment.