Skip to content

Rollup of 5 pull requests #64598

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

Merged
merged 24 commits into from
Sep 19, 2019
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
166719a
Update installed compiler dependencies
andjo403 Aug 31, 2019
9f4351d
Bless output of test borrowck/return-local-binding-from-desugaring.rs…
lqd Sep 17, 2019
222e920
Bless output of test borrowck/return-local-binding-from-desugaring.rs…
lqd Sep 17, 2019
3ef980a
Update expectations of test ui/dropck/dropck_trait_cycle_checked.rs f…
lqd Sep 17, 2019
34d3167
Bless json output of test ui/json-multiple.rs for Polonius
lqd Sep 17, 2019
f9c7329
Bless json output of test ui/json-options.rs for Polonius
lqd Sep 17, 2019
ceb72e4
Add generic dataflow impl
ecstatic-morse Sep 17, 2019
5496a1f
Document new dataflow analysis
ecstatic-morse Sep 18, 2019
2886037
Temporarily add `#[allow(unused)]` for CI
ecstatic-morse Sep 18, 2019
d583fef
Add ignore reason to placate `tidy`
ecstatic-morse Sep 18, 2019
cbaaf05
Fix `Analysis` example
ecstatic-morse Sep 18, 2019
a526e4f
Use an associated const for `name`
ecstatic-morse Sep 18, 2019
19bf0f4
Fix typo
ecstatic-morse Sep 18, 2019
08aff1a
Publish `rustc_mir::dataflow` and remove `#[allow(unused)]`
ecstatic-morse Sep 18, 2019
a7f5252
Add summary of the current state and future plans
ecstatic-morse Sep 18, 2019
b4e94d9
Fix bug where `is_call_return_effect_applied` was never set
ecstatic-morse Sep 18, 2019
f233a4c
Fix a minor grammar nit, update UI tests
Sep 18, 2019
333230f
Restore whitespace
Sep 18, 2019
d440e13
Update Cargo
Aaron1011 Sep 16, 2019
d2b555e
Rollup merge of #63630 - andjo403:bump_compiler, r=nikomatsakis
Centril Sep 19, 2019
11a0b96
Rollup merge of #64536 - Aaron1011:cargo-crate-type, r=ehuss
Centril Sep 19, 2019
0835100
Rollup merge of #64554 - lqd:polonius_tests4, r=nikomatsakis
Centril Sep 19, 2019
67565ae
Rollup merge of #64566 - ecstatic-morse:generic-dataflow, r=oli-obk
Centril Sep 19, 2019
cad2d58
Rollup merge of #64591 - jamesmunns:grammar-fix, r=jonas-schievink
Centril Sep 19, 2019
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
2 changes: 1 addition & 1 deletion src/librustc_mir/dataflow/generic.rs
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ pub trait Analysis<'tcx>: BottomValue {
/// The size of each bitvector allocated for each block.
fn bits_per_block(&self, body: &mir::Body<'tcx>) -> usize;

/// Mutates the entry set of the `START_BLOCK` to containthe initial state for dataflow
/// Mutates the entry set of the `START_BLOCK` to contain the initial state for dataflow
/// analysis.
fn initialize_start_block(&self, body: &mir::Body<'tcx>, state: &mut BitSet<Self::Idx>);