From 34979251481969e83a4353a7e2100addafa49d6d Mon Sep 17 00:00:00 2001 From: Chenhao Ye Date: Sat, 20 Apr 2024 09:51:48 -0500 Subject: [PATCH] fix macro typo --- include/gcache/hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gcache/hash.h b/include/gcache/hash.h index 5df5d1a..43c456f 100644 --- a/include/gcache/hash.h +++ b/include/gcache/hash.h @@ -5,7 +5,7 @@ #define crc_u32(x) _mm_crc32_u32(/*seed*/ 0x537, x) #elif defined(__ARM_FEATURE_CRC32) #define crc_u32(x) __builtin_aarch64_crc32cw(/*seed*/ 0x537, x) -#elif +#else #error "Unsupported architecture" #endif