summaryrefslogtreecommitdiff
path: root/include/qemu/int128.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/qemu/int128.h')
-rw-r--r--include/qemu/int128.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/int128.h b/include/qemu/int128.h
index 2c4064256c..37e07fd6dd 100644
--- a/include/qemu/int128.h
+++ b/include/qemu/int128.h
@@ -205,7 +205,7 @@ typedef struct Int128 Int128;
* a union with other integer types).
*/
struct Int128 {
-#ifdef HOST_WORDS_BIGENDIAN
+#if HOST_BIG_ENDIAN
int64_t hi;
uint64_t lo;
#else