remove stray debugging prints
This commit is contained in:
parent
d089095667
commit
6e0b6c000d
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue