3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 01:54:10 +00:00

json: Improve the "processes in module" message a bit.

This commit is contained in:
Marcelina Kościelnicka 2021-03-23 14:47:32 +01:00
parent 92d5550a90
commit 6b2100bf01

View file

@ -136,7 +136,7 @@ struct JsonWriter
sigidcounter = 2; sigidcounter = 2;
if (module->has_processes()) { if (module->has_processes()) {
log_error("Module %s contains processes, which are not supported by JSON backend.\n", log_id(module)); log_error("Module %s contains processes, which are not supported by JSON backend (run `proc` first).\n", log_id(module));
} }
f << stringf(" %s: {\n", get_name(module->name).c_str()); f << stringf(" %s: {\n", get_name(module->name).c_str());