3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-10 16:13:26 +00:00

opt_mem_priority: Fix non-ascii char in help message.

This is a fixed version of #3072.
This commit is contained in:
Marcelina Kościelnicka 2021-12-08 23:23:03 +01:00
parent d186ea7a2d
commit 1184a7f3b4
2 changed files with 2 additions and 12 deletions

View file

@ -34,7 +34,7 @@ struct OptMemPriorityPass : public Pass {
log(" opt_mem_priority [selection]\n");
log("\n");
log("This pass detects cases where one memory write port has priority over another\n");
log("even though they can never collide with each other ie. there can never be\n");
log("even though they can never collide with each other -- ie. there can never be\n");
log("a situation where a given memory bit is written by both ports at the same\n");
log("time, for example because of always-different addresses, or mutually exclusive\n");
log("enable signals. In such cases, the priority relation is removed.\n");