mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:45:53 +00:00
[CRT]
- Add missing __INTRIN_INLINE for x64 intrinsics svn path=/trunk/; revision=67653
This commit is contained in:
parent
4b07b445ac
commit
059e72b8c3
1 changed files with 2 additions and 2 deletions
|
@ -1253,12 +1253,12 @@ __INTRIN_INLINE unsigned short __popcnt16(unsigned short value)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __x86_64__
|
#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);
|
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);
|
return __builtin_popcountll(value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue