mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
internal_stats: fix doc build by adding a help string
This commit is contained in:
parent
17ee367c7b
commit
14b9155492
|
@ -70,11 +70,11 @@ std::optional<uint64_t> current_mem_bytes() {
|
||||||
}
|
}
|
||||||
|
|
||||||
struct InternalStatsPass : public Pass {
|
struct InternalStatsPass : public Pass {
|
||||||
InternalStatsPass() : Pass("internal_stats", "print some internal statistics") { }
|
InternalStatsPass() : Pass("internal_stats", "print internal statistics") { }
|
||||||
void help() override
|
void help() override
|
||||||
{
|
{
|
||||||
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
||||||
log("\n"); // TODO
|
log("Print internal statistics for developers (experimental)\n");
|
||||||
}
|
}
|
||||||
void execute(std::vector<std::string> args, RTLIL::Design *design) override
|
void execute(std::vector<std::string> args, RTLIL::Design *design) override
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue