remove stray debugging prints

This commit is contained in:
Jacob Lifshay 2024-10-01 18:30:46 -07:00
parent d089095667
commit 6e0b6c000d
Signed by: programmerjake
SSH key fingerprint: SHA256:B1iRVvUJkvd7upMIiMqn6OyxvD2SgJkAH3ZnUOj6z+c

View file

@ -483,14 +483,6 @@ impl State {
);
return Ok(());
}
println!(
r"handle_stmt_connect(
unfolded_lhs_ty: {unfolded_lhs_ty:?},
unfolded_rhs_ty: {unfolded_rhs_ty:?},
folded_lhs: {folded_lhs:?},
folded_rhs: {folded_rhs:?},
)"
);
match unfolded_lhs_ty {
CanonicalType::Array(unfolded_lhs_ty) => self.handle_stmt_connect_array(
unfolded_lhs_ty,
@ -535,11 +527,11 @@ fn connect_port(
) {
if Expr::ty(lhs) == Expr::ty(rhs) {
stmts.push(
dbg!(StmtConnect {
StmtConnect {
lhs,
rhs,
source_location,
})
}
.into(),
);
return;