From bdc0fe55d12430a3bab9a69716cd12bd922eb1d5 Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Tue, 24 Apr 2018 20:08:05 +0000 Subject: [PATCH] [Support] fix countLeadingZeros for types shorter than int llvm-svn: 330762 --- llvm/include/llvm/Support/MathExtras.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/Support/MathExtras.h b/llvm/include/llvm/Support/MathExtras.h index a37a16784e2a..739dcc758d0c 100644 --- a/llvm/include/llvm/Support/MathExtras.h +++ b/llvm/include/llvm/Support/MathExtras.h @@ -455,7 +455,7 @@ std::size_t countLeadingOnes(T Value, ZeroBehavior ZB = ZB_Width) { static_assert(std::numeric_limits::is_integer && !std::numeric_limits::is_signed, "Only unsigned integral types are allowed."); - return countLeadingZeros(~Value, ZB); + return countLeadingZeros(~Value, ZB); } /// \brief Count the number of ones from the least significant bit to the first @@ -471,7 +471,7 @@ std::size_t countTrailingOnes(T Value, ZeroBehavior ZB = ZB_Width) { static_assert(std::numeric_limits::is_integer && !std::numeric_limits::is_signed, "Only unsigned integral types are allowed."); - return countTrailingZeros(~Value, ZB); + return countTrailingZeros(~Value, ZB); } namespace detail {