Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas committed Aug 1, 2024
1 parent 86926b3 commit 1fd0645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recursion/compiler/src/ir/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ impl<F: Field, EF: ExtensionField<F>> Ext<F, EF> {
builder.push(DslIr::SubE(*self, *lhs, *rhs));
}
(SymbolicExt::Val(lhs, _), SymbolicExt::Base(rhs, _)) => {
let rhs = builder.eval(rhs.clone());
let rhs = builder.eval(rhs.clone().into());
builder.push(DslIr::SubEF(*self, *lhs, rhs));
}
(SymbolicExt::Val(lhs, _), rhs) => {
Expand Down

0 comments on commit 1fd0645

Please sign in to comment.