Skip to content

Commit

Permalink
Use target_ulong type for emulator registers.
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2381 c046a42c-6fe2-441c-8c8c-71466251a162
  • Loading branch information
ths committed Feb 2, 2007
1 parent 33ef55b commit b49d07b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cpu-exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ static inline TranslationBlock *tb_find_fast(void)

int cpu_exec(CPUState *env1)
{
int saved_T0, saved_T1;
target_ulong saved_T0, saved_T1;
#if defined(reg_T2)
int saved_T2;
target_ulong saved_T2;
#endif
CPUState *saved_env;
#if defined(TARGET_I386)
Expand Down Expand Up @@ -262,7 +262,8 @@ int cpu_exec(CPUState *env1)
#endif
#endif
#if defined(__sparc__) && !defined(HOST_SOLARIS)
int saved_i7, tmp_T0;
int saved_i7;
target_ulong tmp_T0;
#endif
int ret, interrupt_request;
void (*gen_func)(void);
Expand Down

0 comments on commit b49d07b

Please sign in to comment.