mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	- track depth so we know whether to consider higher-level elsifs - error on unmatched endif/elsif/else
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			127 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			127 B
		
	
	
	
		
			Text
		
	
	
	
	
	
logger -expect error "Found `elsif outside of macro conditional branch!" 1
 | 
						|
read_verilog <<EOT
 | 
						|
module top;
 | 
						|
`elsif
 | 
						|
endmodule
 | 
						|
EOT
 |