Просмотр исходного кода

arm_dyncom_interpreter: Remove unused variable

Thum decoding directly checks if the thumb bit is set instead of using a temporary.
Lioncash 11 лет назад
Родитель
Сommit
f62ab75c67
1 измененных файлов с 1 добавлено и 5 удалено
  1. 1 5
      src/core/arm/dyncom/arm_dyncom_interpreter.cpp

+ 1 - 5
src/core/arm/dyncom/arm_dyncom_interpreter.cpp

@@ -3564,17 +3564,13 @@ static int InterpreterTranslate(ARMul_State* cpu, int& bb_start, u32 addr) {
     unsigned int inst, inst_size = 4;
     int idx;
     int ret = NON_BRANCH;
-    int thumb = 0;
     int size = 0; // instruction size of basic block
     bb_start = top;
 
-    if (cpu->TFlag)
-        thumb = THUMB;
-
     u32 phys_addr = addr;
     u32 pc_start = cpu->Reg[15];
 
-    while(ret == NON_BRANCH) {
+    while (ret == NON_BRANCH) {
         inst = Memory::Read32(phys_addr & 0xFFFFFFFC);
 
         size++;