From ff7fba01d03fc1a8022d43c773888ee587f1ac95 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Wed, 18 Jan 2023 14:15:14 +0800 Subject: [PATCH] float_common.h: add support for ppc32 --- include/fast_float/float_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index ad0854d..27497e4 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -14,7 +14,7 @@ || (defined(__ppc64__) || defined(__PPC64__) || defined(__ppc64le__) || defined(__PPC64LE__)) ) #define FASTFLOAT_64BIT 1 #elif (defined(__i386) || defined(__i386__) || defined(_M_IX86) \ - || defined(__arm__) || defined(_M_ARM) \ + || defined(__arm__) || defined(_M_ARM) || defined(__ppc__) \ || defined(__MINGW32__) || defined(__EMSCRIPTEN__)) #define FASTFLOAT_32BIT 1 #else