1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Define target-specific memory model 4 * Copyright (c) 2009, 2011 Stefan Weil 5 */ 6 7 #ifndef TCG_TARGET_MO_H 8 #define TCG_TARGET_MO_H 9 10 /* 11 * We could notice __i386__ or __s390x__ and reduce the barriers depending 12 * on the host. But if you want performance, you use the normal backend. 13 * We prefer consistency across hosts on this. 14 */ 15 #define TCG_TARGET_DEFAULT_MO 0 16 17 #endif 18