mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 03:32:29 +00:00 
			
		
		
		
	Fixed line numbers when using here-doc macros
This commit is contained in:
		
							parent
							
								
									85e3cc12ac
								
							
						
					
					
						commit
						6d56172c0d
					
				
					 1 changed files with 9 additions and 4 deletions
				
			
		|  | @ -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…
	
	Add table
		Add a link
		
	
		Reference in a new issue