We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e933e71 commit c262de9Copy full SHA for c262de9
crates/core_arch/src/powerpc/mod.rs
@@ -1,11 +1,12 @@
1
//! PowerPC intrinsics
2
-
3
-#[cfg(target_feature = "altivec")]
+#[cfg(any(target_feature = "altivec", doc))]
4
mod altivec;
5
6
pub use self::altivec::*;
7
+#[cfg(any(target_feature = "vsx", doc))]
8
mod vsx;
9
10
pub use self::vsx::*;
11
12
#[cfg(test)]
0 commit comments