summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/source/Symbol/CompactUnwindInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Symbol/CompactUnwindInfo.cpp b/lldb/source/Symbol/CompactUnwindInfo.cpp
index e7153446cd1..85bd22ffa78 100644
--- a/lldb/source/Symbol/CompactUnwindInfo.cpp
+++ b/lldb/source/Symbol/CompactUnwindInfo.cpp
@@ -115,7 +115,7 @@ namespace lldb_private {
#define EXTRACT_BITS(value, mask) \
( (value >> llvm::countTrailingZeros(static_cast<uint32_t>(mask), llvm::ZB_Width)) & \
- (((1 << llvm::CountPopulation_32(static_cast<uint32_t>(mask))))-1) )
+ (((1 << llvm::countPopulation(static_cast<uint32_t>(mask))))-1) )
OpenPOWER on IntegriCloud