Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
18 lines
417 B
C
18 lines
417 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Define target-specific memory model
|
|
* Copyright (c) 2009, 2011 Stefan Weil
|
|
*/
|
|
|
|
#ifndef TCG_TARGET_MO_H
|
|
#define TCG_TARGET_MO_H
|
|
|
|
/*
|
|
* We could notice __x86_64__ 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
|