remove stray debugging prints
This commit is contained in:
parent
d089095667
commit
6e0b6c000d
|
@ -483,14 +483,6 @@ impl State {
|
||||||
);
|
);
|
||||||
return Ok(());
|
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 {
|
match unfolded_lhs_ty {
|
||||||
CanonicalType::Array(unfolded_lhs_ty) => self.handle_stmt_connect_array(
|
CanonicalType::Array(unfolded_lhs_ty) => self.handle_stmt_connect_array(
|
||||||
unfolded_lhs_ty,
|
unfolded_lhs_ty,
|
||||||
|
@ -535,11 +527,11 @@ fn connect_port(
|
||||||
) {
|
) {
|
||||||
if Expr::ty(lhs) == Expr::ty(rhs) {
|
if Expr::ty(lhs) == Expr::ty(rhs) {
|
||||||
stmts.push(
|
stmts.push(
|
||||||
dbg!(StmtConnect {
|
StmtConnect {
|
||||||
lhs,
|
lhs,
|
||||||
rhs,
|
rhs,
|
||||||
source_location,
|
source_location,
|
||||||
})
|
}
|
||||||
.into(),
|
.into(),
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue