- Add missing __INTRIN_INLINE for x64 intrinsics

svn path=/trunk/; revision=67653
This commit is contained in:
Thomas Faber 2015-05-11 12:27:54 +00:00
parent 4b07b445ac
commit 059e72b8c3

View file

@ -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);
}