mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
add missing pdep64 for arm and ppc64le
This commit is contained in:
parent
c8ba7fa1d3
commit
8cba258e7f
@ -203,6 +203,11 @@ u64a pext64_impl(u64a x, u64a mask) {
|
|||||||
return pext64_impl_c(x, mask);
|
return pext64_impl_c(x, mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static really_inline
|
||||||
|
u64a pdep64_impl(u64a x, u64a mask) {
|
||||||
|
return pdep64_impl_c(x, mask);
|
||||||
|
}
|
||||||
|
|
||||||
/* compilers don't reliably synthesize the 32-bit ANDN instruction here,
|
/* compilers don't reliably synthesize the 32-bit ANDN instruction here,
|
||||||
* so we force its generation.
|
* so we force its generation.
|
||||||
*/
|
*/
|
||||||
|
@ -201,7 +201,7 @@ u64a pext64_impl(u64a x, u64a mask) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static really_inline
|
static really_inline
|
||||||
u64a pdep64(u64a x, u64a mask) {
|
u64a pdep64_impl(u64a x, u64a mask) {
|
||||||
return pdep64_impl_c(x, mask);
|
return pdep64_impl_c(x, mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user