about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-10-20 19:04:42 -0700
committerAlex Crichton <alex@alexcrichton.com>2018-11-02 06:52:56 -0700
commit61e89446ef6e115630faa75c985c599d739f7586 (patch)
tree8437a16450309e1ac5174b8417bec2e0e9b99c36 /src/liballoc
parentd0c869c323289c5ec4df83e1c9091fa0b3e2fc07 (diff)
downloadrust-61e89446ef6e115630faa75c985c599d739f7586.tar.gz
rust-61e89446ef6e115630faa75c985c599d739f7586.zip
Remove all jemalloc-related content
This commit removes all jemalloc related submodules, configuration, etc,
from the bootstrap, from the standard library, and from the compiler.
This will be followed up with a change to use jemalloc specifically as
part of rustc on blessed platforms.
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/tests/heap.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/liballoc/tests/heap.rs b/src/liballoc/tests/heap.rs
index 6fa88ce969a..b6be38107da 100644
--- a/src/liballoc/tests/heap.rs
+++ b/src/liballoc/tests/heap.rs
@@ -12,9 +12,6 @@ use alloc_system::System;
 use std::alloc::{Global, Alloc, Layout};
 
 /// https://github.com/rust-lang/rust/issues/45955
-///
-/// Note that `#[global_allocator]` is not used,
-/// so `liballoc_jemalloc` is linked (on some platforms).
 #[test]
 fn alloc_system_overaligned_request() {
     check_overalign_requests(System)