3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 14:13:23 +00:00

Fixed counting verilog line numbers for "// synopsys translate_off" sections

This commit is contained in:
Clifford Wolf 2014-07-30 20:18:48 +02:00
parent 6400ae3648
commit 7daad40ca4
2 changed files with 4 additions and 4 deletions

View file

@ -300,7 +300,7 @@ std::string frontend_verilog_preproc(FILE *f, std::string filename, const std::m
input_file(fp, fn);
fclose(fp);
} else
output_code.push_back("`file_notfound " + fn + "\n");
output_code.push_back("`file_notfound " + fn);
continue;
}