mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 17:05:36 +00:00
tcg: Include CF_COUNT_MASK in CF_HASH_MASK
Backports commit cdfef1715c779eb528d633e8b76cbc8a10e71ac8 from qemu
This commit is contained in:
parent
30c0950567
commit
4a858100f4
|
@ -252,7 +252,7 @@ struct TranslationBlock {
|
|||
#define CF_INVALID 0x80000 /* TB is stale. Setters must acquire tb_lock */
|
||||
#define CF_PARALLEL 0x100000 /* Generate code for a parallel context */
|
||||
/* cflags' mask for hashing/comparison */
|
||||
#define CF_HASH_MASK (CF_PARALLEL)
|
||||
#define CF_HASH_MASK (CF_COUNT_MASK | CF_PARALLEL)
|
||||
|
||||
struct tb_tc tc;
|
||||
/* next matching tb for physical address. */
|
||||
|
|
Loading…
Reference in a new issue