mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-21 19:12:42 +02:00
kern: on second thought, gcc built ins are for chumps
This commit is contained in:
parent
8022175f5f
commit
4689ef9033
@ -70,7 +70,7 @@ namespace ams::kern {
|
||||
static constexpr inline u64 ConvertVirtualCoreMaskToPhysical(u64 v_core_mask) {
|
||||
u64 p_core_mask = 0;
|
||||
while (v_core_mask != 0) {
|
||||
const u64 next = __builtin_ctzll(v_core_mask);
|
||||
const u64 next = util::CountTrailingZeros(v_core_mask);
|
||||
v_core_mask &= ~(static_cast<u64>(1) << next);
|
||||
p_core_mask |= (static_cast<u64>(1) << cpu::VirtualToPhysicalCoreMap[next]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user