diff options
Diffstat (limited to 'runtime/arch/x86/context_x86.cc')
-rw-r--r-- | runtime/arch/x86/context_x86.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/x86/context_x86.cc b/runtime/arch/x86/context_x86.cc index 5cf3001..c68d76a 100644 --- a/runtime/arch/x86/context_x86.cc +++ b/runtime/arch/x86/context_x86.cc @@ -38,7 +38,7 @@ void X86Context::Reset() { void X86Context::FillCalleeSaves(const StackVisitor& fr) { mirror::ArtMethod* method = fr.GetMethod(); uint32_t core_spills = method->GetCoreSpillMask(); - size_t spill_count = __builtin_popcount(core_spills); + size_t spill_count = POPCOUNT(core_spills); DCHECK_EQ(method->GetFpSpillMask(), 0u); size_t frame_size = method->GetFrameSizeInBytes(); if (spill_count > 0) { |