mirror of https://github.com/YosysHQ/yosys.git
Fixed line numbers when using here-doc macros
This commit is contained in:
parent
85e3cc12ac
commit
6d56172c0d
|
@ -343,10 +343,15 @@ std::string frontend_verilog_preproc(FILE *f, std::string filename, const std::m
|
|||
} else {
|
||||
if (state != 2)
|
||||
state = 3;
|
||||
if (tok == "\n" && !here_doc_mode) {
|
||||
return_char('\n');
|
||||
break;
|
||||
}
|
||||
if (tok == "\n") {
|
||||
if (here_doc_mode) {
|
||||
value += " ";
|
||||
newline_count++;
|
||||
} else {
|
||||
return_char('\n');
|
||||
break;
|
||||
}
|
||||
} else
|
||||
if (tok == "\\") {
|
||||
char ch = next_char();
|
||||
if (ch == '\n') {
|
||||
|
|
Loading…
Reference in New Issue