diff options
| author | Ralf Jung <post@ralfj.de> | 2022-12-02 18:16:08 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-12-02 18:16:08 +0100 |
| commit | b64d8670e4c512c29e6a58c73c0aba65f00bb800 (patch) | |
| tree | 8ab5152a8172f85f987a6e84fa1e088e7d67339a /compiler/rustc_codegen_gcc/example | |
| parent | 80ab672b8611d34bf811d4498b9b9d116a085e7c (diff) | |
| parent | cef44f53034eac46be3a0e3eec7b2b3d4ef5140b (diff) | |
| download | rust-b64d8670e4c512c29e6a58c73c0aba65f00bb800.tar.gz rust-b64d8670e4c512c29e6a58c73c0aba65f00bb800.zip | |
Merge from rustc
Diffstat (limited to 'compiler/rustc_codegen_gcc/example')
| -rw-r--r-- | compiler/rustc_codegen_gcc/example/alloc_system.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/rustc_codegen_gcc/example/alloc_system.rs b/compiler/rustc_codegen_gcc/example/alloc_system.rs index 89661918d05..fd01fcf1fc8 100644 --- a/compiler/rustc_codegen_gcc/example/alloc_system.rs +++ b/compiler/rustc_codegen_gcc/example/alloc_system.rs @@ -13,17 +13,17 @@ // The minimum alignment guaranteed by the architecture. This value is used to // add fast paths for low alignment values. -#[cfg(all(any(target_arch = "x86", +#[cfg(any(target_arch = "x86", target_arch = "arm", target_arch = "mips", target_arch = "powerpc", - target_arch = "powerpc64")))] + target_arch = "powerpc64"))] const MIN_ALIGN: usize = 8; -#[cfg(all(any(target_arch = "x86_64", +#[cfg(any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "mips64", target_arch = "s390x", - target_arch = "sparc64")))] + target_arch = "sparc64"))] const MIN_ALIGN: usize = 16; pub struct System; |
