mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	fix bug with handling theory symbols of bit-vector type. Happens for data-type accessors. Reported by Clemens Eisenhofer
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
		
							parent
							
								
									09e84e0448
								
							
						
					
					
						commit
						7ffed8613a
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -315,7 +315,7 @@ namespace sls {
 | 
			
		|||
                val.set(val_el.bits());
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
        if (e->get_family_id() == null_family_id) {
 | 
			
		||||
        if (e->get_family_id() != bv.get_fid()) {
 | 
			
		||||
            val.set(wval(e).bits());
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue