Skip to content

Commit 85d2702

Browse files
committed
opensta, sdc_expand: fix help
1 parent 411fc14 commit 85d2702

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

techlibs/common/opensta.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ struct OpenstaPass : public Pass
1616
log("\n");
1717
log(" opensta [options]\n");
1818
log("\n");
19-
// TOOD
19+
log("Expand SDC file with OpenSTA.\n");
20+
log("Internal command like abc. Requires a well-formed design.\n");
21+
log("For general SDC expansion with OpenSTA, use the sdc_expand command.\n");
2022
log("\n");
2123
log(" -exe <command>\n");
2224
log(" use <command> to run OpenSTA instead of \"%s\"\n", default_opensta_cmd);

techlibs/common/sdc_expand.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ PRIVATE_NAMESPACE_BEGIN
77

88
struct SdcExpandPass : public ScriptPass
99
{
10-
SdcExpandPass() : ScriptPass("sdc_expand", "run OpenSTA") { }
10+
SdcExpandPass() : ScriptPass("sdc_expand", "expand SDC design with opensta") { }
1111

1212
void help() override
1313
{
1414
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
1515
log("\n");
1616
log(" sdc_expand [options]\n");
1717
log("\n");
18-
// TODO
18+
log("Expand SDC file with opensta based on arbitrary current design.\n");
19+
log("Changes the design but only temporarily.\n");
1920
log("\n");
2021
log(" -exe <command>\n");
2122
log(" use <command> to run OpenSTA instead of \"%s\"\n", default_opensta_cmd);

0 commit comments

Comments
 (0)