target-alpha: Suppress underflow from CVTTQ if DNZ
I.e. respect flush_inputs_to_zero. Reported-by: Al Viro <viro@ZenIV.linux.org.uk> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
		
							parent
							
								
									b99e80694c
								
							
						
					
					
						commit
						4ed069ab53
					
				@ -452,7 +452,7 @@ static uint64_t do_cvttq(CPUAlphaState *env, uint64_t a, int roundmode)
 | 
				
			|||||||
    frac = a & 0xfffffffffffffull;
 | 
					    frac = a & 0xfffffffffffffull;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (exp == 0) {
 | 
					    if (exp == 0) {
 | 
				
			||||||
        if (unlikely(frac != 0)) {
 | 
					        if (unlikely(frac != 0) && !env->fp_status.flush_inputs_to_zero) {
 | 
				
			||||||
            goto do_underflow;
 | 
					            goto do_underflow;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    } else if (exp == 0x7ff) {
 | 
					    } else if (exp == 0x7ff) {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user