1
0
mirror of synced 2026-02-06 16:54:36 +00:00

write_verilog: fix precondition check.

This commit is contained in:
whitequark
2020-04-14 12:12:50 +00:00
parent 102fb5424f
commit 9c64d37a4c

View File

@@ -1984,7 +1984,7 @@ struct VerilogBackend : public Backend {
extra_args(f, filename, args, argidx);
if (extmem)
{
if (filename.empty())
if (filename == "<stdout>")
log_cmd_error("Option -extmem must be used with a filename.\n");
extmem_prefix = filename.substr(0, filename.rfind('.'));
}