summaryrefslogtreecommitdiffstats
path: root/library/stdarch/crates/std_detect/src/detect/bit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/stdarch/crates/std_detect/src/detect/bit.rs')
-rw-r--r--library/stdarch/crates/std_detect/src/detect/bit.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/bit.rs b/library/stdarch/crates/std_detect/src/detect/bit.rs
new file mode 100644
index 000000000..6f06c5523
--- /dev/null
+++ b/library/stdarch/crates/std_detect/src/detect/bit.rs
@@ -0,0 +1,9 @@
+//! Bit manipulation utilities.
+
+/// Tests the `bit` of `x`.
+#[allow(dead_code)]
+#[inline]
+pub(crate) fn test(x: usize, bit: u32) -> bool {
+ debug_assert!(bit < usize::BITS, "bit index out-of-bounds");
+ x & (1 << bit) != 0
+}