Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ec0e4bb

Browse files
committedJun 25, 2018
Auto merge of #51538 - nikomatsakis:nll-perf-examination, r=<try>
[WIP] Convert NLL ops to caches This is a extension of <#51460>. It uses a lot more caching than we used to do. This caching is not yet as efficient as it could be, but I'm curious to see the current perf results.
2 parents b7c6e8f + 9e67309 commit ec0e4bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+2972
-1694
lines changed
 

‎src/Cargo.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1781,6 +1781,7 @@ dependencies = [
17811781
"bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
17821782
"byteorder 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
17831783
"chalk-engine 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
1784+
"either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
17841785
"flate2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
17851786
"fmt_macros 0.0.0",
17861787
"graphviz 0.0.0",

‎src/librustc/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ crate-type = ["dylib"]
1111
[dependencies]
1212
arena = { path = "../libarena" }
1313
bitflags = "1.0"
14+
either = "1.5.0"
1415
fmt_macros = { path = "../libfmt_macros" }
1516
graphviz = { path = "../libgraphviz" }
1617
jobserver = "0.1"

0 commit comments

Comments
 (0)
Please sign in to comment.