Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
georgwiese committed Jan 15, 2025
1 parent cc5b2df commit e4aa952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/machines/small_field/arith.asm
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ machine Arith(byte: Byte, byte2: Byte2) with
// being copied syntactically before resolving the closures.
// Moving these expressions out of the link fixes it.
let sum0 = sum(4, |i| x1[i] * CLK8[i]) + sum(4, |i| y1[i] * CLK8[4 + i]);
link => byte2.check(sum0);
link => byte.check(sum0);
let sum1 = sum(4, |i| x2[i] * CLK8[i]) + sum(4, |i| y2[i] * CLK8[4 + i]);
link => byte.check(sum1);
let sum2 = sum(4, |i| y3[i] * CLK8[i]);
Expand Down

0 comments on commit e4aa952

Please sign in to comment.