diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-09-02 12:13:33 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-09-02 12:13:33 -0700 |
commit | 7e8f7f4c59c96897159d32771d0c7179c5474281 (patch) | |
tree | 1485f73353e8fe1a7825b41a9306b093ca93f774 /passes/cmds | |
parent | f76cb584940fa3217de28febdb103443b8a8cf37 (diff) | |
parent | 4aa505d1b254b3fbb66af2d95b396a8f077da9d0 (diff) | |
download | yosys-7e8f7f4c59c96897159d32771d0c7179c5474281.tar.gz yosys-7e8f7f4c59c96897159d32771d0c7179c5474281.tar.bz2 yosys-7e8f7f4c59c96897159d32771d0c7179c5474281.zip |
Merge branch 'master' of github.com:YosysHQ/yosys
Diffstat (limited to 'passes/cmds')
-rw-r--r-- | passes/cmds/select.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/cmds/select.cc b/passes/cmds/select.cc index 59d10a1b8..0f1f05ccb 100644 --- a/passes/cmds/select.cc +++ b/passes/cmds/select.cc @@ -664,7 +664,7 @@ static void select_stmt(RTLIL::Design *design, std::string arg) } else if (arg == "%D") { if (work_stack.size() < 2) - log_cmd_error("Must have at least two elements on the stack for operator %%d.\n"); + log_cmd_error("Must have at least two elements on the stack for operator %%D.\n"); select_op_diff(design, work_stack[work_stack.size()-1], work_stack[work_stack.size()-2]); work_stack[work_stack.size()-2] = work_stack[work_stack.size()-1]; work_stack.pop_back(); @@ -693,7 +693,7 @@ static void select_stmt(RTLIL::Design *design, std::string arg) } else if (arg == "%C") { if (work_stack.size() < 1) - log_cmd_error("Must have at least one element on the stack for operator %%M.\n"); + log_cmd_error("Must have at least one element on the stack for operator %%C.\n"); select_op_module_to_cells(design, work_stack[work_stack.size()-1]); } else if (arg == "%c") { |