mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Support: remove some variable names
If built with -Wunused-variable, clang objects to the declarations due to the unused variable; drop the names. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222944 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b60bcfde69
commit
e395d7421d
@ -72,7 +72,7 @@ countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
typename std::enable_if<std::numeric_limits<T>::is_integer &&
|
typename std::enable_if<std::numeric_limits<T>::is_integer &&
|
||||||
std::numeric_limits<T>::is_signed, std::size_t>::type
|
std::numeric_limits<T>::is_signed, std::size_t>::type
|
||||||
countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) LLVM_DELETED_FUNCTION;
|
countTrailingZeros(T, ZeroBehavior = ZB_Width) LLVM_DELETED_FUNCTION;
|
||||||
|
|
||||||
#if __GNUC__ >= 4 || _MSC_VER
|
#if __GNUC__ >= 4 || _MSC_VER
|
||||||
template <>
|
template <>
|
||||||
@ -138,7 +138,7 @@ countLeadingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
typename std::enable_if<std::numeric_limits<T>::is_integer &&
|
typename std::enable_if<std::numeric_limits<T>::is_integer &&
|
||||||
std::numeric_limits<T>::is_signed, std::size_t>::type
|
std::numeric_limits<T>::is_signed, std::size_t>::type
|
||||||
countLeadingZeros(T Val, ZeroBehavior ZB = ZB_Width) LLVM_DELETED_FUNCTION;
|
countLeadingZeros(T, ZeroBehavior = ZB_Width) LLVM_DELETED_FUNCTION;
|
||||||
|
|
||||||
#if __GNUC__ >= 4 || _MSC_VER
|
#if __GNUC__ >= 4 || _MSC_VER
|
||||||
template <>
|
template <>
|
||||||
@ -193,7 +193,7 @@ findFirstSet(T Val, ZeroBehavior ZB = ZB_Max) {
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
typename std::enable_if<std::numeric_limits<T>::is_integer &&
|
typename std::enable_if<std::numeric_limits<T>::is_integer &&
|
||||||
std::numeric_limits<T>::is_signed, T>::type
|
std::numeric_limits<T>::is_signed, T>::type
|
||||||
findFirstSet(T Val, ZeroBehavior ZB = ZB_Max) LLVM_DELETED_FUNCTION;
|
findFirstSet(T, ZeroBehavior = ZB_Max) LLVM_DELETED_FUNCTION;
|
||||||
|
|
||||||
/// \brief Get the index of the last set bit starting from the least
|
/// \brief Get the index of the last set bit starting from the least
|
||||||
/// significant bit.
|
/// significant bit.
|
||||||
@ -219,7 +219,7 @@ findLastSet(T Val, ZeroBehavior ZB = ZB_Max) {
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
typename std::enable_if<std::numeric_limits<T>::is_integer &&
|
typename std::enable_if<std::numeric_limits<T>::is_integer &&
|
||||||
std::numeric_limits<T>::is_signed, T>::type
|
std::numeric_limits<T>::is_signed, T>::type
|
||||||
findLastSet(T Val, ZeroBehavior ZB = ZB_Max) LLVM_DELETED_FUNCTION;
|
findLastSet(T, ZeroBehavior = ZB_Max) LLVM_DELETED_FUNCTION;
|
||||||
|
|
||||||
/// \brief Macro compressed bit reversal table for 256 bits.
|
/// \brief Macro compressed bit reversal table for 256 bits.
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user