target_arch is always powerpc64, remove powerpc64le check
We no longer need to check for powerpc64le, so remove it.
This commit is contained in:
parent
84e0458c99
commit
afdf179d84
1 changed files with 1 additions and 2 deletions
|
|
@ -56,8 +56,7 @@ const MIN_ALIGN: usize = 8;
|
|||
#[cfg(all(any(target_arch = "x86",
|
||||
target_arch = "x86_64",
|
||||
target_arch = "aarch64",
|
||||
target_arch = "powerpc64",
|
||||
target_arch = "powerpc64le")))]
|
||||
target_arch = "powerpc64")))]
|
||||
const MIN_ALIGN: usize = 16;
|
||||
|
||||
// MALLOCX_ALIGN(a) macro
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue