mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-05 10:50:25 +00:00
Renamed opt_const to opt_expr
This commit is contained in:
parent
d31c968d76
commit
1d0f0d668a
14 changed files with 84 additions and 83 deletions
|
@ -254,7 +254,7 @@ void create_miter_equiv(struct Pass *that, std::vector<std::string> args, RTLIL:
|
|||
|
||||
if (flag_flatten) {
|
||||
log_push();
|
||||
Pass::call_on_module(design, miter_module, "flatten; opt_const -keepdc -undriven;;");
|
||||
Pass::call_on_module(design, miter_module, "flatten; opt_expr -keepdc -undriven;;");
|
||||
log_pop();
|
||||
}
|
||||
}
|
||||
|
@ -327,7 +327,7 @@ void create_miter_assert(struct Pass *that, std::vector<std::string> args, RTLIL
|
|||
|
||||
if (flag_flatten) {
|
||||
log_push();
|
||||
Pass::call_on_module(design, module, "opt_const -keepdc -undriven;;");
|
||||
Pass::call_on_module(design, module, "opt_expr -keepdc -undriven;;");
|
||||
log_pop();
|
||||
}
|
||||
}
|
||||
|
@ -361,7 +361,7 @@ struct MiterPass : public Pass {
|
|||
log(" also create an 'assert' cell that checks if trigger is always low.\n");
|
||||
log("\n");
|
||||
log(" -flatten\n");
|
||||
log(" call 'flatten; opt_const -keepdc -undriven;;' on the miter circuit.\n");
|
||||
log(" call 'flatten; opt_expr -keepdc -undriven;;' on the miter circuit.\n");
|
||||
log("\n");
|
||||
log("\n");
|
||||
log(" miter -assert [options] module [miter_name]\n");
|
||||
|
@ -375,7 +375,7 @@ struct MiterPass : public Pass {
|
|||
log(" keep module output ports.\n");
|
||||
log("\n");
|
||||
log(" -flatten\n");
|
||||
log(" call 'flatten; opt_const -keepdc -undriven;;' on the miter circuit.\n");
|
||||
log(" call 'flatten; opt_expr -keepdc -undriven;;' on the miter circuit.\n");
|
||||
log("\n");
|
||||
}
|
||||
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue