diff options
| author | Anton Blanchard <anton@samba.org> | 2016-02-04 06:48:26 +1100 |
|---|---|---|
| committer | Anton Blanchard <anton@samba.org> | 2016-02-09 20:09:40 +0000 |
| commit | afdf179d84dc4aa290c38604b5f35b1ef669fd65 (patch) | |
| tree | 2cfef773685d198193a308a3bf64da0e240b602c /src/liballoc_jemalloc/lib.rs | |
| parent | 84e0458c99b490d359facf6997db29399559c916 (diff) | |
| download | rust-afdf179d84dc4aa290c38604b5f35b1ef669fd65.tar.gz rust-afdf179d84dc4aa290c38604b5f35b1ef669fd65.zip | |
target_arch is always powerpc64, remove powerpc64le check
We no longer need to check for powerpc64le, so remove it.
Diffstat (limited to 'src/liballoc_jemalloc/lib.rs')
| -rw-r--r-- | src/liballoc_jemalloc/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/liballoc_jemalloc/lib.rs b/src/liballoc_jemalloc/lib.rs index 8bdbd1a926f..d02e9e4ba13 100644 --- a/src/liballoc_jemalloc/lib.rs +++ b/src/liballoc_jemalloc/lib.rs @@ -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 |
