Skip to content

Commit 36eaa35

Browse files
committed
Don't store known
1 parent 4791663 commit 36eaa35

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

executor/src/witgen/jit/compiler.rs

+1-16
Original file line numberDiff line numberDiff line change
@@ -287,22 +287,7 @@ fn witgen_code<T: FieldElement>(
287287
.format("\n");
288288
// We do not store "known" together with the values, because we hope
289289
// that this way, the optimizer can group them better.
290-
let store_known = vars_known
291-
.iter()
292-
.filter_map(|var| match var {
293-
Variable::WitnessCell(cell) => Some(cell),
294-
Variable::Param(_)
295-
| Variable::FixedCell(_)
296-
| Variable::IntermediateCell(_)
297-
| Variable::MachineCallParam(_) => None,
298-
})
299-
.map(|cell| {
300-
format!(
301-
" set_known(known, row_offset, {}, {});",
302-
cell.row_offset, cell.id
303-
)
304-
})
305-
.format("\n");
290+
let store_known = "".to_string();
306291
format!(
307292
r#"
308293
#[no_mangle]

0 commit comments

Comments
 (0)