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

Added support for ":" as comment symbol after ;-parsing

This commit is contained in:
Clifford Wolf 2015-10-23 20:08:33 +02:00
parent 15a67392f1
commit 281a033e92

View file

@ -209,7 +209,7 @@ void Pass::call(RTLIL::Design *design, std::string command)
void Pass::call(RTLIL::Design *design, std::vector<std::string> args) void Pass::call(RTLIL::Design *design, std::vector<std::string> args)
{ {
if (args.size() == 0 || args[0][0] == '#') if (args.size() == 0 || args[0][0] == '#' || args[0][0] == ':')
return; return;
if (echo_mode) { if (echo_mode) {