| Age | Commit message (Expand) | Author | Lines |
| 2020-03-11 | Update the mir inline costs | Andreas Jonson | -2/+17 |
| 2020-03-11 | Rollup merge of #69850 - RalfJung:panic-bounds-check, r=eddyb | Mazdak Farrokhzad | -1/+0 |
| 2020-03-10 | Rollup merge of #69714 - spastorino:place-ref-lifetime, r=oli-obk | Mazdak Farrokhzad | -5/+5 |
| 2020-03-09 | remove no-longer needed span from Miri Machine hook | Ralf Jung | -1/+0 |
| 2020-03-08 | fix some cases of unexpected exceptions leaving validation | Ralf Jung | -2/+3 |
| 2020-03-08 | move error allocation test to error.rs | Ralf Jung | -26/+9 |
| 2020-03-08 | Apply suggestions from code review | Jonas Schievink | -2/+2 |
| 2020-03-08 | Change index for SwitchInt case | Jonas Schievink | -1/+1 |
| 2020-03-08 | Poison generators when any terminator unwinds | Jonas Schievink | -5/+31 |
| 2020-03-07 | Don't insert panic when generator can not unwind | Jonas Schievink | -1/+45 |
| 2020-03-07 | remove unneeded mutable references (cippy::unnecessary_mut_passed) | Matthias Krüger | -1/+1 |
| 2020-03-07 | Don't insert panic when generator can not return | Jonas Schievink | -2/+29 |
| 2020-03-07 | Rollup merge of #69787 - spastorino:use-local-directly-its-copy, r=oli-obk | Mazdak Farrokhzad | -6/+6 |
| 2020-03-07 | Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov | Mazdak Farrokhzad | -2/+2 |
| 2020-03-07 | Rollup merge of #69782 - matthiaskrgr:redundant_field_name_rep, r=cramertj | Mazdak Farrokhzad | -4/+4 |
| 2020-03-07 | Rollup merge of #69656 - matthiaskrgr:iter_nth_zero, r=oli-obk | Mazdak Farrokhzad | -1/+1 |
| 2020-03-06 | mir::Local is Copy we can pass it by value in these cases | Santiago Pastorino | -6/+6 |
| 2020-03-06 | Don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -4/+4 |
| 2020-03-06 | fix various typos | Matthias Krüger | -2/+2 |
| 2020-03-06 | Model generator resumption in dataflow | Jonas Schievink | -2/+2 |
| 2020-03-05 | Use righthand '&' instead of lefthand "ref". (clippy::toplevel_ref_arg) | Matthias Krüger | -2/+2 |
| 2020-03-04 | PlaceRef<'a, 'tcx> -> PlaceRef<'tcx> | Santiago Pastorino | -5/+5 |
| 2020-03-04 | Make PlaceRef lifetimes of in_projection be both 'tcx | Santiago Pastorino | -3/+3 |
| 2020-03-04 | Auto merge of #69550 - RalfJung:scalar, r=oli-obk | bors | -1/+3 |
| 2020-03-03 | Use .next() instead of .nth(0) on iterators. | Matthias Krüger | -1/+1 |
| 2020-03-02 | s/merged_block_count/statements_to_merge/g | Markus Westerlind | -3/+3 |
| 2020-03-01 | Auto merge of #69408 - RalfJung:canonical-alloc-id, r=oli-obk | bors | -12/+0 |
| 2020-03-01 | Auto merge of #69295 - ecstatic-morse:unified-dataflow-generators, r=tmandry | bors | -58/+35 |
| 2020-03-01 | Auto merge of #69592 - petrochenkov:nosyntax, r=Centril | bors | -4/+4 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -4/+4 |
| 2020-02-29 | Rollup merge of #69572 - matthiaskrgr:try_err_and_iter_on_ref, r=Centril | Dylan DPC | -2/+2 |
| 2020-02-28 | Process `RequiresStorage` results in pre-order | Dylan MacKenzie | -2/+3 |
| 2020-02-29 | use .iter() instead of .into_iter() on references. | Matthias Krüger | -2/+2 |
| 2020-02-29 | Rollup merge of #69551 - matthiaskrgr:len_zero, r=Mark-Simulacrum | Dylan DPC | -1/+1 |
| 2020-02-28 | Rollup merge of #69541 - dotdash:format, r=Mark-Simulacrum | Mazdak Farrokhzad | -4/+2 |
| 2020-02-28 | Rollup merge of #69481 - matthiaskrgr:single_char, r=ecstatic-morse | Mazdak Farrokhzad | -1/+1 |
| 2020-02-28 | remove ScalarMaybeUndef::to_bits and make Scalar::to_bits private | Ralf Jung | -1/+3 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -1/+1 |
| 2020-02-27 | don't use .into() to convert types into identical types. | Matthias Krüger | -1/+1 |
| 2020-02-27 | Rename `RequiresStorage` to `MaybeRequiresStorage` | Dylan MacKenzie | -3/+3 |
| 2020-02-27 | Port `RequiresStorage` to new dataflow framework | Dylan MacKenzie | -49/+27 |
| 2020-02-27 | Port `MaybeStorageLive` to new dataflow framework | Dylan MacKenzie | -8/+6 |
| 2020-02-27 | Remove unneeded calls to format!() | Björn Steinbrink | -4/+2 |
| 2020-02-27 | use char instead of &str for single char patterns | Matthias Krüger | -1/+1 |
| 2020-02-23 | miri/machine: add canonical_alloc_id hook to replace find_foreign_static | Ralf Jung | -12/+0 |
| 2020-02-22 | Auto merge of #69333 - ecstatic-morse:revert-simd-shuffle, r=petrochenkov | bors | -5/+19 |
| 2020-02-22 | Auto merge of #69302 - jonas-schievink:yield-needs-storage, r=Zoxc | bors | -3/+18 |
| 2020-02-20 | Revert "Rollup merge of #69280 - ecstatic-morse:promote-shuffle-no-special-ca... | Dylan MacKenzie | -5/+19 |
| 2020-02-20 | Rollup merge of #69185 - RalfJung:const-prop-lints, r=oli-obk | Mazdak Farrokhzad | -91/+86 |
| 2020-02-20 | Auto merge of #68847 - ecstatic-morse:const-impl, r=oli-obk | bors | -3/+25 |