mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #684 from lioncash/uninit
dyncom: Suppress uninitialized variable warnings
This commit is contained in:
		
						commit
						8d7a77a1d4
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -339,7 +339,7 @@ static void LnSWoUB(ScaledRegisterPreIndexed)(ARMul_State* cpu, unsigned int ins | |||
|     unsigned int shift_imm = BITS(inst, 7, 11); | ||||
|     unsigned int Rn = BITS(inst, 16, 19); | ||||
|     unsigned int Rm = BITS(inst, 0, 3); | ||||
|     unsigned int index; | ||||
|     unsigned int index = 0; | ||||
|     unsigned int addr; | ||||
|     unsigned int rm = CHECK_READ_REG15_WA(cpu, Rm); | ||||
|     unsigned int rn = CHECK_READ_REG15_WA(cpu, Rn); | ||||
|  | @ -390,7 +390,7 @@ static void LnSWoUB(ScaledRegisterPostIndexed)(ARMul_State* cpu, unsigned int in | |||
|     unsigned int shift_imm = BITS(inst, 7, 11); | ||||
|     unsigned int Rn = BITS(inst, 16, 19); | ||||
|     unsigned int Rm = BITS(inst, 0, 3); | ||||
|     unsigned int index; | ||||
|     unsigned int index = 0; | ||||
|     unsigned int addr = CHECK_READ_REG15_WA(cpu, Rn); | ||||
|     unsigned int rm = CHECK_READ_REG15_WA(cpu, Rm); | ||||
| 
 | ||||
|  | @ -605,7 +605,7 @@ static void LnSWoUB(ScaledRegisterOffset)(ARMul_State* cpu, unsigned int inst, u | |||
|     unsigned int shift_imm = BITS(inst, 7, 11); | ||||
|     unsigned int Rn = BITS(inst, 16, 19); | ||||
|     unsigned int Rm = BITS(inst, 0, 3); | ||||
|     unsigned int index; | ||||
|     unsigned int index = 0; | ||||
|     unsigned int addr; | ||||
|     unsigned int rm = CHECK_READ_REG15_WA(cpu, Rm); | ||||
|     unsigned int rn = CHECK_READ_REG15_WA(cpu, Rn); | ||||
|  | @ -1126,7 +1126,7 @@ int CondPassed(ARMul_State* cpu, unsigned int cond) { | |||
|     #define CFLAG        cpu->CFlag | ||||
|     #define VFLAG        cpu->VFlag | ||||
| 
 | ||||
|     int temp; | ||||
|     int temp = 0; | ||||
| 
 | ||||
|     switch (cond) { | ||||
|     case 0x0: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue