mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-22 22:03:40 +00:00
No arguments for opt_balance_tree any more
This commit is contained in:
parent
83234d24f7
commit
3da6e3f060
1 changed files with 1 additions and 6 deletions
|
@ -311,17 +311,12 @@ struct OptBalanceTreePass : public Pass {
|
||||||
log("\n");
|
log("\n");
|
||||||
}
|
}
|
||||||
void execute(std::vector<std::string> args, RTLIL::Design *design) override {
|
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");
|
log_header(design, "Executing OPT_BALANCE_TREE pass (cell cascades to trees).\n");
|
||||||
|
|
||||||
// Handle arguments
|
// Handle arguments
|
||||||
size_t argidx;
|
size_t argidx;
|
||||||
for (argidx = 1; argidx < args.size(); argidx++) {
|
for (argidx = 1; argidx < args.size(); argidx++) {
|
||||||
if (args[argidx] == "-splitfanout") {
|
// No arguments yet
|
||||||
splitfanout = true;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
extra_args(args, argidx, design);
|
extra_args(args, argidx, design);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue