mirror of https://github.com/YosysHQ/yosys.git
Simple support for %l format specifier
Yosys doesn't support libraries, so this provides the same behavior as %m, as some other tools have opted to do.
This commit is contained in:
parent
082cbcb4c7
commit
c7ceed3fd3
|
@ -110,6 +110,12 @@ std::string AstNode::process_format_str(const std::string &sformat, int next_arg
|
|||
goto unsupported_format;
|
||||
break;
|
||||
|
||||
case 'l':
|
||||
case 'L':
|
||||
if (got_len)
|
||||
goto unsupported_format;
|
||||
break;
|
||||
|
||||
default:
|
||||
unsupported_format:
|
||||
log_file_error(filename, location.first_line, "System task `%s' called with invalid/unsupported format specifier.\n", str.c_str());
|
||||
|
@ -155,6 +161,11 @@ std::string AstNode::process_format_str(const std::string &sformat, int next_arg
|
|||
sout += log_id(current_module->name);
|
||||
break;
|
||||
|
||||
case 'l':
|
||||
case 'L':
|
||||
sout += log_id(current_module->name);
|
||||
break;
|
||||
|
||||
default:
|
||||
log_abort();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue