diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-20 22:47:42 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-20 22:47:42 +0000 |
commit | c068688b03f4af8994ba0d7bd41a74c8f245453b (patch) | |
tree | 9610a62180ad9afc24ad191ccd530c28adb6b282 /cpu-exec.c | |
parent | 5e3b100b65ea3af8e9a31507541e26d5e439e377 (diff) | |
download | qemu-c068688b03f4af8994ba0d7bd41a74c8f245453b.tar.gz qemu-c068688b03f4af8994ba0d7bd41a74c8f245453b.tar.bz2 qemu-c068688b03f4af8994ba0d7bd41a74c8f245453b.zip |
Extend TB flags to 64 bits (Alexander Graf).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3198 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-exec.c')
-rw-r--r-- | cpu-exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu-exec.c b/cpu-exec.c index 2d08626db1..3395059662 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -77,7 +77,7 @@ void cpu_resume_from_signal(CPUState *env1, void *puc) static TranslationBlock *tb_find_slow(target_ulong pc, target_ulong cs_base, - unsigned int flags) + uint64_t flags) { TranslationBlock *tb, **ptb1; int code_gen_size; @@ -155,7 +155,7 @@ static inline TranslationBlock *tb_find_fast(void) { TranslationBlock *tb; target_ulong cs_base, pc; - unsigned int flags; + uint64_t flags; /* we record a subset of the CPU state. It will always be the same before a given translated block |