mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	Fixed radix 2 k = 1 lint
This commit is contained in:
		
							parent
							
								
									a69a3e6eee
								
							
						
					
					
						commit
						c653f1b30f
					
				@ -115,7 +115,7 @@ module fdivsqrtpreproc (
 | 
			
		||||
      assign RightShiftX = `RK - 1 - ((TotalIntBits - 1) % `RK);  // Right shift amount
 | 
			
		||||
      assign DivXShifted = DivX >> RightShiftX;                   // shift X to complete in nE steps
 | 
			
		||||
    end else begin // radix 2 1 copy doesn't require shifting
 | 
			
		||||
      assign nE = p + 1; 
 | 
			
		||||
      assign nE = p; 
 | 
			
		||||
      assign DivXShifted = DivX;
 | 
			
		||||
    end
 | 
			
		||||
  /* verilator lint_on WIDTH */
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user