mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 11:42:30 +00:00 
			
		
		
		
	cxxrtl: use log_id() where appropriate. NFC.
This commit is contained in:
		
							parent
							
								
									d22a8d157d
								
							
						
					
					
						commit
						5f17e0ced5
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -1971,9 +1971,9 @@ struct CxxrtlWorker { | |||
| 
 | ||||
| 			if (!feedback_wires.empty()) { | ||||
| 				has_feedback_arcs = true; | ||||
| 				log("Module `%s' contains feedback arcs through wires:\n", module->name.c_str()); | ||||
| 				log("Module `%s' contains feedback arcs through wires:\n", log_id(module)); | ||||
| 				for (auto wire : feedback_wires) | ||||
| 					log("  %s\n", wire->name.c_str()); | ||||
| 					log("  %s\n", log_id(wire)); | ||||
| 			} | ||||
| 
 | ||||
| 			for (auto wire : module->wires()) { | ||||
|  | @ -2002,9 +2002,9 @@ struct CxxrtlWorker { | |||
| 			} | ||||
| 			if (!buffered_wires.empty()) { | ||||
| 				has_buffered_wires = true; | ||||
| 				log("Module `%s' contains buffered combinatorial wires:\n", module->name.c_str()); | ||||
| 				log("Module `%s' contains buffered combinatorial wires:\n", log_id(module)); | ||||
| 				for (auto wire : buffered_wires) | ||||
| 					log("  %s\n", wire->name.c_str()); | ||||
| 					log("  %s\n", log_id(wire)); | ||||
| 			} | ||||
| 
 | ||||
| 			eval_converges[module] = feedback_wires.empty() && buffered_wires.empty(); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue