mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-28 19:35:53 +00:00
Small comment update
This commit is contained in:
parent
2deabdd640
commit
63a421aed8
1 changed files with 2 additions and 2 deletions
|
@ -148,7 +148,7 @@ struct SplitfanoutPass : public Pass {
|
||||||
{
|
{
|
||||||
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" splitfanout [options] [selection]\n");
|
log(" splitfanout [selection]\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log("This command copies selected cells with >1 fanout into cells with fanout 1. It\n");
|
log("This command copies selected cells with >1 fanout into cells with fanout 1. It\n");
|
||||||
log("is effectively the opposite of the opt_merge pass.\n");
|
log("is effectively the opposite of the opt_merge pass.\n");
|
||||||
|
@ -164,7 +164,7 @@ struct SplitfanoutPass : public Pass {
|
||||||
size_t argidx;
|
size_t argidx;
|
||||||
for (argidx = 1; argidx < args.size(); argidx++)
|
for (argidx = 1; argidx < args.size(); argidx++)
|
||||||
{
|
{
|
||||||
// No arguments currently supported
|
// No options currently. When adding in the future make sure to update docstring with [options]
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
extra_args(args, argidx, design);
|
extra_args(args, argidx, design);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue