mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-03 21:09:12 +00:00 
			
		
		
		
	Also interpret '&' in liberty functions
This commit is contained in:
		
							parent
							
								
									587056447e
								
							
						
					
					
						commit
						7d076f071e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -188,7 +188,7 @@ static RTLIL::SigSpec parse_func_expr(RTLIL::Module *module, const char *expr)
 | 
			
		|||
		}
 | 
			
		||||
 | 
			
		||||
		token_t next_token(0);
 | 
			
		||||
		if (*expr == '(' || *expr == ')' || *expr == '\'' || *expr == '!' || *expr == '^' || *expr == '*' || *expr == '+' || *expr == '|')
 | 
			
		||||
		if (*expr == '(' || *expr == ')' || *expr == '\'' || *expr == '!' || *expr == '^' || *expr == '*' || *expr == '+' || *expr == '|' || *expr == '&')
 | 
			
		||||
			next_token = token_t(*(expr++));
 | 
			
		||||
		else
 | 
			
		||||
			next_token = token_t(0, parse_func_identifier(module, expr));
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue