Fix stuff

This commit is contained in:
Akash Levy 2025-05-15 15:27:12 -07:00
parent 3f94486a1c
commit 3c7c004c31
1 changed files with 0 additions and 9 deletions

View File

@ -136,13 +136,4 @@ struct PeepoptPass : public Pass {
}
} PeepoptPass;
SigSpec remove_bottom_padding(SigSpec sig)
{
int i = 0;
for (; i < sig.size() - 1 && sig[i] == State::S0; i++) {
}
return sig.extract(i, sig.size() - i);
}
PRIVATE_NAMESPACE_END