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.
all
1 parent 20ff362 commit 3951167Copy full SHA for 3951167
example/alloc_system.rs
@@ -13,17 +13,17 @@
13
14
// The minimum alignment guaranteed by the architecture. This value is used to
15
// add fast paths for low alignment values.
16
-#[cfg(all(any(target_arch = "x86",
+#[cfg(any(target_arch = "x86",
17
target_arch = "arm",
18
target_arch = "mips",
19
target_arch = "powerpc",
20
- target_arch = "powerpc64")))]
+ target_arch = "powerpc64"))]
21
const MIN_ALIGN: usize = 8;
22
-#[cfg(all(any(target_arch = "x86_64",
+#[cfg(any(target_arch = "x86_64",
23
target_arch = "aarch64",
24
target_arch = "mips64",
25
target_arch = "s390x",
26
- target_arch = "sparc64")))]
+ target_arch = "sparc64"))]
27
const MIN_ALIGN: usize = 16;
28
29
pub struct System;
0 commit comments