Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
77d80b2
Introduce if-let guards in the HIR
LeSeulArtichaut Oct 24, 2020
f9cc626
Implement typechecking if-let guards
LeSeulArtichaut Nov 11, 2020
cfaaa21
Implement liveness passes for if-let guards
LeSeulArtichaut Nov 11, 2020
bab2080
Introduce if-let guards in the THIR
LeSeulArtichaut Nov 11, 2020
f3d4aa6
Implement lowering of if-let guards to MIR
LeSeulArtichaut Nov 13, 2020
61e69bc
Handle `Guard::IfLet` in clippy
LeSeulArtichaut Nov 15, 2020
0917260
Add a few basic tests for if-let guards
LeSeulArtichaut Nov 15, 2020
c6f2d49
fix issue #78496
wecing Dec 10, 2020
78c0680
update comments
wecing Dec 10, 2020
3812f70
fix test case issue ref
wecing Dec 10, 2020
357565d
expand-yaml-anchors: Make the output directory separator-insensitive
JohnTitor Dec 14, 2020
a72b739
Remove unused `TyEncoder::tcx` required method
LeSeulArtichaut Dec 14, 2020
5afb95a
Test that `core::assert!` is valid
jyn514 Dec 16, 2020
1d6b455
Fixed conflict with drop elaboration and coverage
richkadel Dec 16, 2020
acc63bc
Add support for target aliases
kulikjak Dec 16, 2020
6893206
Revert "Auto merge of #78790 - Gankra:rust-src-vendor, r=Mark-Simulac…
ehuss Dec 16, 2020
1e1ca28
Allow `since="TBD"` for rustc_deprecated
Dec 9, 2020
f365de3
Add `popcount` and `popcnt` as doc aliases for `count_ones` methods.
SimonSapin Dec 16, 2020
bec1c27
Remove docs for non-existent parameters in `rustc_expand`
camelid Dec 17, 2020
1e1ba7c
Rollup merge of #79051 - LeSeulArtichaut:if-let-guard, r=matthewjasper
JohnTitor Dec 17, 2020
3d42c00
Rollup merge of #79877 - bstrie:depinfut, r=oli-obk
JohnTitor Dec 17, 2020
a611f8d
Rollup merge of #79882 - wecing:master, r=oli-obk
JohnTitor Dec 17, 2020
f645e30
Rollup merge of #80026 - JohnTitor:separator-insensitive, r=Mark-Simu…
JohnTitor Dec 17, 2020
2808038
Rollup merge of #80039 - LeSeulArtichaut:rm-tyencoder-tcx, r=matthewj…
JohnTitor Dec 17, 2020
3cf5bc8
Rollup merge of #80069 - jyn514:core-assert, r=dtolnay
JohnTitor Dec 17, 2020
a5b1d22
Rollup merge of #80072 - richkadel:llvm-coverage-counters-2.2.1, r=tm…
JohnTitor Dec 17, 2020
0b1e718
Rollup merge of #80073 - kulikjak:add-target-alias-support, r=varkor
JohnTitor Dec 17, 2020
5ce62da
Rollup merge of #80082 - ehuss:revert-rust-src-vendor, r=Mark-Simulacrum
JohnTitor Dec 17, 2020
e4735dd
Rollup merge of #80097 - SimonSapin:popcount, r=m-ou-se
JohnTitor Dec 17, 2020
e2582e4
Rollup merge of #80103 - camelid:remove-docs-old-params-rustc_expand,…
JohnTitor Dec 17, 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
fix test case issue ref
  • Loading branch information
wecing committed Dec 10, 2020
commit 3812f70355132b53092e826c9d1a753dfd8a1874
2 changes: 1 addition & 1 deletion src/test/ui/mir/issue-78496.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// run-pass
// compile-flags: -Z mir-opt-level=2 -C opt-level=0

// example from #68867
// example from #78496
pub enum E<'a> {
Empty,
Some(&'a E<'a>),
Expand Down