mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-11-03 23:28:48 +00:00 
			
		
		
		
	vfp: Get rid of warnings
This commit is contained in:
		
							parent
							
								
									5d0e557689
								
							
						
					
					
						commit
						4b89cf9e43
					
				
					 2 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -144,8 +144,8 @@ static inline void mul64to128(u64* resh, u64* resl, u64 n, u64 m)
 | 
			
		|||
    u32 nh, nl, mh, ml;
 | 
			
		||||
    u64 rh, rma, rmb, rl;
 | 
			
		||||
 | 
			
		||||
    nl = n;
 | 
			
		||||
    ml = m;
 | 
			
		||||
    nl = static_cast<u32>(n);
 | 
			
		||||
    ml = static_cast<u32>(m);
 | 
			
		||||
    rl = (u64)nl * ml;
 | 
			
		||||
 | 
			
		||||
    nh = n >> 32;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -661,8 +661,8 @@ static u32 vfp_double_ftosi(ARMul_State* state, int sd, int unused, int dm, u32
 | 
			
		|||
 | 
			
		||||
        if ((rem + incr) < rem && d < 0xffffffff)
 | 
			
		||||
            d += 1;
 | 
			
		||||
        if (d > (0x7fffffff + (vdm.sign != 0))) {
 | 
			
		||||
            d = (0x7fffffff + (vdm.sign != 0));
 | 
			
		||||
        if (d > (0x7fffffffU + (vdm.sign != 0))) {
 | 
			
		||||
            d = (0x7fffffffU + (vdm.sign != 0));
 | 
			
		||||
            exceptions |= FPSCR_IOC;
 | 
			
		||||
        } else if (rem)
 | 
			
		||||
            exceptions |= FPSCR_IXC;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue