From: Richard Henderson Date: Thu, 7 Sep 2017 17:54:30 +0000 (-0700) Subject: tcg/tci: Add TCG_TARGET_DEFAULT_MO X-Git-Tag: v2.11.0-rc0~123 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cda4a338c4243fa3bff4498b935340ac7121cc76;p=thirdparty%2Fqemu.git tcg/tci: Add TCG_TARGET_DEFAULT_MO Missed being added as part of 71650df7b0ee. Signed-off-by: Richard Henderson Signed-off-by: Peter Maydell --- diff --git a/tcg/tci/tcg-target.h b/tcg/tci/tcg-target.h index 06963288dca..8df628a3194 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 */