From 059e72b8c3f8f580f52fd9f123cccbc2254d041c Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Mon, 11 May 2015 12:27:54 +0000 Subject: [PATCH] [CRT] - Add missing __INTRIN_INLINE for x64 intrinsics svn path=/trunk/; revision=67653 --- reactos/include/crt/mingw32/intrin_x86.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/include/crt/mingw32/intrin_x86.h b/reactos/include/crt/mingw32/intrin_x86.h index 6444fef98d0..e3257854a8d 100644 --- a/reactos/include/crt/mingw32/intrin_x86.h +++ b/reactos/include/crt/mingw32/intrin_x86.h @@ -1253,12 +1253,12 @@ __INTRIN_INLINE unsigned short __popcnt16(unsigned short value) } #ifdef __x86_64__ -unsigned long long __lzcnt64(unsigned long long value) +__INTRIN_INLINE unsigned long long __lzcnt64(unsigned long long value) { return __builtin_clzll(value); } -unsigned long long __popcnt64(unsigned long long value) +__INTRIN_INLINE unsigned long long __popcnt64(unsigned long long value) { return __builtin_popcountll(value); }