mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 03:32:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			378 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			378 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef VERILOG_ERROR_H
 | |
| #define VERILOG_ERROR_H
 | |
| 
 | |
| #include "kernel/yosys_common.h"
 | |
| #include "frontends/ast/ast.h"
 | |
| #include "frontends/verilog/verilog_location.h"
 | |
| 
 | |
| YOSYS_NAMESPACE_BEGIN
 | |
| 
 | |
| namespace VERILOG_FRONTEND
 | |
| {
 | |
|     [[noreturn]]
 | |
|     void err_at_loc(Location loc, char const *fmt, ...);
 | |
|     void warn_at_loc(Location loc, char const *fmt, ...);
 | |
| };
 | |
| 
 | |
| YOSYS_NAMESPACE_END
 | |
| 
 | |
| #endif
 |