From c068688b03f4af8994ba0d7bd41a74c8f245453b Mon Sep 17 00:00:00 2001 From: j_mayer Date: Thu, 20 Sep 2007 22:47:42 +0000 Subject: Extend TB flags to 64 bits (Alexander Graf). git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3198 c046a42c-6fe2-441c-8c8c-71466251a162 --- exec-all.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exec-all.h') diff --git a/exec-all.h b/exec-all.h index ca59597422..f58aea5345 100644 --- a/exec-all.h +++ b/exec-all.h @@ -171,7 +171,7 @@ static inline int tlb_set_page(CPUState *env, target_ulong vaddr, typedef struct TranslationBlock { target_ulong pc; /* simulated PC corresponding to this block (EIP + CS base) */ target_ulong cs_base; /* CS base for this block */ - unsigned int flags; /* flags defining in which context the code was generated */ + uint64_t flags; /* flags defining in which context the code was generated */ uint16_t size; /* size of target code for this block (1 <= size <= TARGET_PAGE_SIZE) */ uint16_t cflags; /* compile flags */ -- cgit v1.2.1