Skip to content

Commit 5fb2505

Browse files
author
jagdeep sidhu
committed
Update dump_shrink_verify_constraints.rs
1 parent 41d33f6 commit 5fb2505

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

crates/prover/src/bin/dump_shrink_verify_constraints.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,15 @@ fn report_divf_sites(
568568
for (i, instr) in instrs[start..end].iter().enumerate() {
569569
let idx = start + i;
570570
eprintln!(" {idx}: {}", instr_kind(instr));
571+
if let Instruction::BaseAlu(BaseAluInstr { opcode, addrs, .. }) = instr {
572+
eprintln!(
573+
" BaseAlu {:?}: out={}, in1={}, in2={}",
574+
opcode,
575+
addrs.out.as_usize(),
576+
addrs.in1.as_usize(),
577+
addrs.in2.as_usize()
578+
);
579+
}
571580
}
572581
}
573582
}

0 commit comments

Comments
 (0)