mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	vfpinstr: Fix trivial signed/unsigned mismatch warnings
This commit is contained in:
		
							parent
							
								
									a78b8b1bc4
								
							
						
					
					
						commit
						4f910bb1a1
					
				@ -1443,7 +1443,7 @@ VPUSH_INST:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        addr = cpu->Reg[R13] - inst_cream->imm32;
 | 
					        addr = cpu->Reg[R13] - inst_cream->imm32;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        for (int i = 0; i < inst_cream->regs; i++)
 | 
					        for (unsigned int i = 0; i < inst_cream->regs; i++)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            if (inst_cream->single)
 | 
					            if (inst_cream->single)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
@ -1512,7 +1512,7 @@ VSTM_INST: /* encoding 1 */
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        addr = (inst_cream->add ? cpu->Reg[inst_cream->n] : cpu->Reg[inst_cream->n] - inst_cream->imm32);
 | 
					        addr = (inst_cream->add ? cpu->Reg[inst_cream->n] : cpu->Reg[inst_cream->n] - inst_cream->imm32);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        for (int i = 0; i < inst_cream->regs; i++)
 | 
					        for (unsigned int i = 0; i < inst_cream->regs; i++)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            if (inst_cream->single)
 | 
					            if (inst_cream->single)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
@ -1581,7 +1581,7 @@ VPOP_INST:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        addr = cpu->Reg[R13];
 | 
					        addr = cpu->Reg[R13];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        for (int i = 0; i < inst_cream->regs; i++)
 | 
					        for (unsigned int i = 0; i < inst_cream->regs; i++)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            if (inst_cream->single)
 | 
					            if (inst_cream->single)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
@ -1718,7 +1718,7 @@ VLDM_INST:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        addr = (inst_cream->add ? cpu->Reg[inst_cream->n] : cpu->Reg[inst_cream->n] - inst_cream->imm32);
 | 
					        addr = (inst_cream->add ? cpu->Reg[inst_cream->n] : cpu->Reg[inst_cream->n] - inst_cream->imm32);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        for (int i = 0; i < inst_cream->regs; i++)
 | 
					        for (unsigned int i = 0; i < inst_cream->regs; i++)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            if (inst_cream->single)
 | 
					            if (inst_cream->single)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user