diff options
-rw-r--r-- | tcg/tci/tcg-target.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tcg/tci/tcg-target.h b/tcg/tci/tcg-target.h index 06963288dc..8df628a319 100644 --- a/tcg/tci/tcg-target.h +++ b/tcg/tci/tcg-target.h @@ -192,4 +192,9 @@ static inline void flush_icache_range(uintptr_t start, uintptr_t stop) { } +/* We could notice __i386__ or __s390x__ and reduce the barriers depending + on the host. But if you want performance, you use the normal backend. + We prefer consistency across hosts on this. */ +#define TCG_TARGET_DEFAULT_MO (0) + #endif /* TCG_TARGET_H */ |