mirror of https://github.com/YosysHQ/yosys.git
write_verilog: add a missing newline.
This commit is contained in:
parent
435776120a
commit
fccaa25ec1
|
@ -1419,7 +1419,7 @@ void dump_module(std::ostream &f, std::string indent, RTLIL::Module *module)
|
||||||
log_warning("Module %s contains unmapped RTLIL proccesses. RTLIL processes\n"
|
log_warning("Module %s contains unmapped RTLIL proccesses. RTLIL processes\n"
|
||||||
"can't always be mapped directly to Verilog always blocks. Unintended\n"
|
"can't always be mapped directly to Verilog always blocks. Unintended\n"
|
||||||
"changes in simulation behavior are possible! Use \"proc\" to convert\n"
|
"changes in simulation behavior are possible! Use \"proc\" to convert\n"
|
||||||
"processes to logic networks and registers.", log_id(module));
|
"processes to logic networks and registers.\n", log_id(module));
|
||||||
|
|
||||||
f << stringf("\n");
|
f << stringf("\n");
|
||||||
for (auto it = module->processes.begin(); it != module->processes.end(); ++it)
|
for (auto it = module->processes.begin(); it != module->processes.end(); ++it)
|
||||||
|
|
Loading…
Reference in New Issue