Skip to content

Commit afdf179

Browse files
target_arch is always powerpc64, remove powerpc64le check
We no longer need to check for powerpc64le, so remove it.
1 parent 84e0458 commit afdf179

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/liballoc_jemalloc/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ const MIN_ALIGN: usize = 8;
5656
#[cfg(all(any(target_arch = "x86",
5757
target_arch = "x86_64",
5858
target_arch = "aarch64",
59-
target_arch = "powerpc64",
60-
target_arch = "powerpc64le")))]
59+
target_arch = "powerpc64")))]
6160
const MIN_ALIGN: usize = 16;
6261

6362
// MALLOCX_ALIGN(a) macro

0 commit comments

Comments
 (0)