mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
kern: on second thought, gcc built ins are for chumps
This commit is contained in:
parent
ff07ba4201
commit
cdc619a8a6
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue