From b91dfd498e79ed6810f5284344008b40fc38bccb Mon Sep 17 00:00:00 2001 From: Nodir Temirkhodjaev Date: Tue, 15 Feb 2022 14:24:47 +0300 Subject: [PATCH] Windows uses Little Endian order on ARM too --- src/driver/common/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/common/common.h b/src/driver/common/common.h index 7ee4a160..00cbcb8e 100644 --- a/src/driver/common/common.h +++ b/src/driver/common/common.h @@ -39,7 +39,7 @@ # endif #endif -#if defined(_ARM_) || defined(_ARM64_) +#if 0 # define FORT_BIG_ENDIAN 1 #endif