Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #55202 - alexcrichton:alloc-system, r=<try>
Browse files Browse the repository at this point in the history
[wip] Link to alloc_system by default

I'm curious to see the perf impact we have from moving away from jemalloc, so using this as a placeholder to run a perf run!
bors committed Oct 19, 2018
2 parents 74ff7dc + 635cb31 commit 7e7928d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/librustc_target/spec/mod.rs
Original file line number Diff line number Diff line change
@@ -1272,7 +1272,8 @@ impl ToJson for Target {

fn maybe_jemalloc() -> Option<String> {
if cfg!(feature = "jemalloc") {
Some("alloc_jemalloc".to_string())
None
// Some("alloc_jemalloc".to_string())
} else {
None
}

0 comments on commit 7e7928d

Please sign in to comment.