mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
Extend TB flags to 64 bits (Alexander Graf).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3198 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
5e3b100b65
commit
c068688b03
4 changed files with 7 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue