3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-24 01:25:33 +00:00

No arguments for opt_balance_tree any more

This commit is contained in:
Akash Levy 2024-11-11 17:07:30 -08:00
parent 83234d24f7
commit 3da6e3f060

View file

@ -311,17 +311,12 @@ struct OptBalanceTreePass : public Pass {
log("\n");
}
void execute(std::vector<std::string> args, RTLIL::Design *design) override {
bool splitfanout = false;
log_header(design, "Executing OPT_BALANCE_TREE pass (cell cascades to trees).\n");
// Handle arguments
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {
if (args[argidx] == "-splitfanout") {
splitfanout = true;
continue;
}
// No arguments yet
break;
}
extra_args(args, argidx, design);