Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 10 pull requests #80063

Closed
wants to merge 31 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
94d73d4
Refactor `parse_prefix` on Windows
CDirkx Nov 3, 2020
ea14607
make MIR graphviz generation use gsgdt
vn-ki Oct 26, 2020
5b049e1
write to a String instead to reduce churn
vn-ki Oct 26, 2020
a4e94ec
update gsgdt
vn-ki Oct 27, 2020
86a7831
formatting
vn-ki Nov 9, 2020
51ecb96
add different color for cleanup nodes in dark mode
vn-ki Nov 12, 2020
6fe31e7
fix clippy test
vn-ki Dec 5, 2020
7cb74ed
Remove memoization leftovers
Dec 8, 2020
de1cd4b
Extra assertions in eval_body_using_ecx to disallow queries for
Dec 9, 2020
b6f7eef
Remove unnecessary check and fix local_def_id parameter
Dec 10, 2020
a03feaa
add missing constraints
Dec 11, 2020
ed80815
Move binder for dyn to each list item
jackh726 Dec 11, 2020
0f30b7d
fix panic if converting ZST Vec to VecDeque
Stupremee Dec 13, 2020
d75618e
replace assert! with assert_eq!
Stupremee Dec 13, 2020
94fd1d3
BTreeMap: more expressive local variables in merge
ssomers Nov 23, 2020
09d528e
fix typo
Stupremee Dec 13, 2020
6c7835e
BTreeSet: simplify implementation of pop_first/pop_last
ssomers Nov 20, 2020
357565d
expand-yaml-anchors: Make the output directory separator-insensitive
JohnTitor Dec 14, 2020
01c2520
Add explanation for skip_binder in relate
jackh726 Dec 14, 2020
777ca99
Optimization for bool's PartialOrd impl
ChayimFriedman2 Dec 14, 2020
a9ff4bd
Always run intrinsics lowering pass
tmiasko Dec 15, 2020
f29a5b1
Rollup merge of #78399 - vn-ki:gsgdt-graphviz, r=oli-obk
Dylan-DPC Dec 15, 2020
75c28fc
Rollup merge of #78833 - CDirkx:parse_prefix, r=dtolnay
Dylan-DPC Dec 15, 2020
4ee4cf7
Rollup merge of #79840 - dvtkrlbs:issue-79667, r=oli-obk
Dylan-DPC Dec 15, 2020
24116c0
Rollup merge of #79945 - jackh726:existential_trait_ref, r=nikomatsakis
Dylan-DPC Dec 15, 2020
e08e2c3
Rollup merge of #80003 - Stupremee:fix-zst-vecdeque-conversion-panic,…
Dylan-DPC Dec 15, 2020
084337e
Rollup merge of #80006 - ssomers:btree_cleanup_6, r=Mark-Simulacrum
Dylan-DPC Dec 15, 2020
c8cb04f
Rollup merge of #80022 - ssomers:btree_cleanup_8, r=Mark-Simulacrum
Dylan-DPC Dec 15, 2020
77b6d15
Rollup merge of #80026 - JohnTitor:separator-insensitive, r=Mark-Simu…
Dylan-DPC Dec 15, 2020
71bc0c9
Rollup merge of #80035 - ChayimFriedman2:patch-1, r=nagisa
Dylan-DPC Dec 15, 2020
fec936b
Rollup merge of #80040 - tmiasko:always-lower-intrinsics, r=Dylan-DPC
Dylan-DPC Dec 15, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
formatting
  • Loading branch information
vn-ki committed Nov 9, 2020
commit 86a7831f0b522e624574b440bc09b40a713dacbb
2 changes: 1 addition & 1 deletion Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5262,7 +5262,7 @@ dependencies = [
"chrono",
"lazy_static",
"matchers",
"parking_lot 0.11.0",
"parking_lot 0.9.0",
"regex",
"serde",
"serde_json",
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_mir/src/util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ pub mod storage;
mod alignment;
pub mod collect_writes;
mod find_self_call;
pub(crate) mod generic_graphviz;
mod generic_graph;
pub(crate) mod generic_graphviz;
mod graphviz;
pub(crate) mod pretty;
pub(crate) mod spanview;
Expand Down