/[qemu]/qemu/translate-all.c
ViewVC logotype

Diff of /qemu/translate-all.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.13 by bellard, Sat Jul 2 14:56:31 2005 UTC revision 1.14 by bellard, Mon Dec 5 19:56:07 2005 UTC
# Line 53  uint8_t gen_opc_cc_op[OPC_BUF_SIZE]; Line 53  uint8_t gen_opc_cc_op[OPC_BUF_SIZE];
53  #elif defined(TARGET_SPARC)  #elif defined(TARGET_SPARC)
54  target_ulong gen_opc_npc[OPC_BUF_SIZE];  target_ulong gen_opc_npc[OPC_BUF_SIZE];
55  target_ulong gen_opc_jump_pc[2];  target_ulong gen_opc_jump_pc[2];
56    #elif defined(TARGET_MIPS)
57    uint32_t gen_opc_hflags[OPC_BUF_SIZE];
58  #endif  #endif
59    
60  int code_copy_enabled = 1;  int code_copy_enabled = 1;
# Line 302  int cpu_restore_state(TranslationBlock * Line 304  int cpu_restore_state(TranslationBlock *
304      }      }
305  #elif defined(TARGET_MIPS)  #elif defined(TARGET_MIPS)
306      env->PC = gen_opc_pc[j];      env->PC = gen_opc_pc[j];
307        env->hflags &= ~MIPS_HFLAG_BMASK;
308        env->hflags |= gen_opc_hflags[j];
309  #endif  #endif
310      return 0;      return 0;
311  }  }

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26