aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/utils')
-rw-r--r--src/lib/utils/cpuid.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/utils/cpuid.h b/src/lib/utils/cpuid.h
index 4e276fabe..53e59e9e5 100644
--- a/src/lib/utils/cpuid.h
+++ b/src/lib/utils/cpuid.h
@@ -170,7 +170,6 @@ class BOTAN_DLL CPUID
*/
static void clear_cpuid_bit(CPUID_bits bit)
{
- BOTAN_ASSERT(bit < 128, "CPUID bit within bounds");
const uint64_t mask = ~(static_cast<uint64_t>(1) << (bit % 64));
g_processor_flags[bit/64] &= mask;
}
@@ -180,7 +179,6 @@ class BOTAN_DLL CPUID
if(!g_initialized)
initialize();
const size_t bit = static_cast<size_t>(elem);
- BOTAN_ASSERT(bit < 128, "CPUID bit within bounds");
return ((g_processor_flags[bit/64] >> (bit % 64)) & 1);
}