projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33ef55b
)
Use target_ulong type for emulator registers.
author
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 2 Feb 2007 03:57:09 +0000
(
03:57
+0000)
committer
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 2 Feb 2007 03:57:09 +0000
(
03:57
+0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2381
c046a42c
-6fe2-441c-8c8c-
71466251a162
cpu-exec.c
patch
|
blob
|
history
diff --git
a/cpu-exec.c
b/cpu-exec.c
index a2704e5f1f86b2fade7454c83f2e976530aa2a28..fcf0698aa35fa540a8d1ee978501808428dcde3a 100644
(file)
--- a/
cpu-exec.c
+++ b/
cpu-exec.c
@@
-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)
@@
-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);