We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5ad17a commit 276cd3eCopy full SHA for 276cd3e
src/x86/x86.rs
@@ -45,7 +45,9 @@ pub fn cpuid(request: u32, ext: u32) -> CpuidResult {
45
/// Reads the contents of the extended control register `XCR`
46
/// specified in `xcr_no`.
47
#[inline(always)]
48
-//#[target_feature = "+xsave"]
+// FIXME: see
49
+// https://github.com/rust-lang-nursery/stdsimd/issues/167
50
+// #[target_feature = "+xsave"]
51
#[cfg_attr(test, assert_instr(xgetbv))]
52
pub unsafe fn xgetbv(xcr_no: u32) -> u64 {
53
let eax: u32;
0 commit comments