mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 03:32:29 +00:00 
			
		
		
		
	Merge pull request #852 from ucb-bar/firrtlfixes
Ensure fid() calls make_id() for consistency; tests/simple/dff_init.v fails
This commit is contained in:
		
						commit
						855b9dc606
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		|  | @ -165,8 +165,7 @@ struct FirrtlWorker | |||
| 
 | ||||
| 	std::string fid(RTLIL::IdString internal_id) | ||||
| 	{ | ||||
| 		const char *str = internal_id.c_str(); | ||||
| 		return *str == '\\' ? str + 1 : str; | ||||
| 		return make_id(internal_id); | ||||
| 	} | ||||
| 
 | ||||
| 	std::string cellname(RTLIL::Cell *cell) | ||||
|  |  | |||
|  | @ -1,6 +1,7 @@ | |||
| # This file contains the names of verilog files to exclude from verilog to FIRRTL regression tests due to known failures. | ||||
| arraycells.v	inst id[0] of | ||||
| dff_different_styles.v | ||||
| dff_init.v	Initial value not supported | ||||
| generate.v	combinational loop | ||||
| hierdefparam.v	inst id[0] of | ||||
| i2c_master_tests.v   $adff | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue