3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-11-23 14:11:28 +00:00

opensta, sdc_expand: mark as experimental

This commit is contained in:
Emil J. Tywoniak 2025-11-19 15:31:17 +01:00
parent 85d2702ef6
commit 1edc32dcd0
2 changed files with 2 additions and 0 deletions

View file

@ -44,6 +44,7 @@ struct OpenstaPass : public Pass
bool cleanup = design->scratchpad_get_bool("opensta.cleanup", true); bool cleanup = design->scratchpad_get_bool("opensta.cleanup", true);
log_header(design, "Executing OPENSTA pass.\n"); log_header(design, "Executing OPENSTA pass.\n");
log_experimental("opensta");
log_push(); log_push();
size_t argidx; size_t argidx;

View file

@ -37,6 +37,7 @@ struct SdcExpandPass : public ScriptPass
void execute(std::vector<std::string> args, RTLIL::Design *design) override void execute(std::vector<std::string> args, RTLIL::Design *design) override
{ {
log_header(design, "Executing SDC_EXPAND pass.\n"); log_header(design, "Executing SDC_EXPAND pass.\n");
log_experimental("sdc_expand");
string run_from, run_to; string run_from, run_to;
opensta_exe = ""; opensta_exe = "";
cleanup = design->scratchpad_get_bool("sdc_expand.cleanup", true); cleanup = design->scratchpad_get_bool("sdc_expand.cleanup", true);