From fc193ffe241a870f5938999d3e54d9aa7572a1b1 Mon Sep 17 00:00:00 2001 From: mio Date: Fri, 28 Oct 2022 17:55:39 +0200 Subject: [PATCH] Fix missing macros --- tests/unit/test_x86.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_x86.c b/tests/unit/test_x86.c index 8e9d7cd3..ddc84710 100644 --- a/tests/unit/test_x86.c +++ b/tests/unit/test_x86.c @@ -1267,7 +1267,7 @@ TEST_LIST = { {"test_x86_correct_address_in_long_jump_hook", test_x86_correct_address_in_long_jump_hook}, {"test_x86_invalid_vex_l", test_x86_invalid_vex_l}, -#ifndef TARGET_READ_INLINED +#if !defined(TARGET_READ_INLINED) && defined(BOOST_LITTLE_ENDIAN) {"test_x86_unaligned_access", test_x86_unaligned_access}, #endif {"test_x86_lazy_mapping", test_x86_lazy_mapping},