| Age | Commit message (Expand) | Author | Lines |
| 2018-02-17 | fix more typos found by codespell. | Matthias Krüger | -2/+2 |
| 2018-02-15 | mir: Gather move at SwitchInt, Assert terminators | Federico Poli | -3/+6 |
| 2018-02-09 | Auto merge of #47802 - bobtwinkles:loop_false_edge, r=nikomatsakis | bors | -0/+10 |
| 2018-02-08 | Encode (in MIR) whether borrows are explicit in source or arise due to autoref. | Felix S. Klock II | -1/+1 |
| 2018-02-05 | mir: Add TerminatorKind::FalseUnwind | bobtwinkles | -0/+10 |
| 2018-02-03 | Auto merge of #47845 - Zoxc:gen-fixes, r=nikomatsakis | bors | -0/+123 |
| 2018-01-30 | Fix ICE when assigning references to a static mut with NLL | Aaron Hill | -2/+1 |
| 2018-01-30 | Force locals to be live after they are borrowed for immovable generators. Fix... | John Kåre Alsaker | -0/+123 |
| 2018-01-29 | rustc: replace "lvalue" terminology with "place" in the code. | Eduard-Mihai Burtescu | -62/+62 |
| 2018-01-27 | end_point handling multibyte characters correctly. | David Wood | -2/+2 |
| 2018-01-18 | in which the unused-parens lint comes to cover function and method args | Zack M. Davis | -1/+1 |
| 2018-01-10 | Use the new fs_read_write functions in rustc internals | Matt Brubeck | -2/+2 |
| 2018-01-03 | Auto merge of #46984 - arielb1:pre-statement-effect, r=nikomatsakis | bors | -3/+96 |
| 2017-12-26 | Auto merge of #46975 - matthewjasper:mir-moveck-asm, r=arielb1 | bors | -2/+24 |
| 2017-12-24 | Make killing of out-of-scope borrows a pre-statement effect | Ariel Ben-Yehuda | -0/+28 |
| 2017-12-24 | add pre-statement-effect to dataflow | Ariel Ben-Yehuda | -3/+68 |
| 2017-12-24 | Auto merge of #46833 - diwic:7c-abort-ffi, r=arielb1 | bors | -0/+3 |
| 2017-12-23 | Give MIR borrowck a better understanding of inline asm | Matthew Jasper | -2/+24 |
| 2017-12-21 | Issue #46589 - Kill borrows on a local variable whenever we assign over this ... | David Teller | -10/+25 |
| 2017-12-21 | Rollup merge of #46887 - pnkfelix:ensure-activations-are-from-assignments-to-... | Guillaume Gomez | -1/+17 |
| 2017-12-21 | Mir: Add Terminatorkind::Abort | David Henningsson | -0/+3 |
| 2017-12-20 | use Rc to store nonlexical_regioncx in Borrows | Niko Matsakis | -2/+2 |
| 2017-12-20 | Ensure separate activations only occur for assignments to locals, not project... | Felix S. Klock II | -1/+17 |
| 2017-12-20 | Rollup merge of #46852 - scottmcm:asm-placecontext, r=arielb1 | kennytm | -0/+4 |
| 2017-12-19 | Split PlaceContext::Store into Store & AsmOutput | Scott McMurray | -0/+4 |
| 2017-12-15 | move `flow_in_progress` into `dataflow` and document it | Niko Matsakis | -8/+34 |
| 2017-12-13 | After discussion with ariel, replacing a guard within kill_loans_out_of_scope... | Felix S. Klock II | -33/+33 |
| 2017-12-13 | Incorporate active-borrows dataflow into MIR borrow check, yielding | Felix S. Klock II | -2/+4 |
| 2017-12-13 | Add some doc to `struct Borrows`. | Felix S. Klock II | -3/+22 |
| 2017-12-13 | New `ActiveBorrows` dataflow for two-phase `&mut`; not yet borrowed-checked. | Felix S. Klock II | -118/+491 |
| 2017-12-13 | Refactoring alpha-rename `place` (`BorrowData` field) to `borrowed_place`. | Felix S. Klock II | -4/+4 |
| 2017-12-13 | Refactoring: Allow `BlockSets.on_entry` to denote locally accumulated intrabl... | Felix S. Klock II | -0/+30 |
| 2017-12-13 | Refactoring: pull bitvector initialization out from other parts of dataflow. | Felix S. Klock II | -21/+18 |
| 2017-12-13 | Revised graphviz rendering API to avoid requiring borrowed state. | Felix S. Klock II | -18/+37 |
| 2017-12-11 | Added test for #46472 | David Wood | -0/+2 |
| 2017-12-10 | avoid passing the gen/kill bits to `start_block_effects` | Ariel Ben-Yehuda | -23/+23 |
| 2017-12-10 | move FlowAtLocation to be a dataflow abstraction | Ariel Ben-Yehuda | -29/+193 |
| 2017-12-06 | work around weird match arm lifetimes | Ariel Ben-Yehuda | -3/+23 |
| 2017-12-06 | fix borrows across loops, libcore *almost* compiles | Ariel Ben-Yehuda | -2/+29 |
| 2017-12-06 | handle gen/kill sets together | Ariel Ben-Yehuda | -50/+46 |
| 2017-12-06 | fix handling of CallScopeData | Ariel Ben-Yehuda | -3/+26 |
| 2017-12-04 | constraint_generation: create liveness constraints more thoroughly | Niko Matsakis | -4/+0 |
| 2017-12-04 | inform constraint generation using maybe-init | Paul Daniel Faria | -5/+9 |
| 2017-12-03 | Auto merge of #46334 - mikhail-m1:slice_pattern_array_drop, r=arielb1 | bors | -1/+6 |
| 2017-12-03 | don't track borrows for empty regions | Ariel Ben-Yehuda | -0/+6 |
| 2017-12-03 | fix handling of borrows at a function's end | Ariel Ben-Yehuda | -0/+4 |
| 2017-12-02 | create a drop ladder for an array if any value is moved out | Mikhail Modin | -1/+6 |
| 2017-12-01 | MIR: s/lv(al(ue)?)?/place in function/variable/module names. | Eduard-Mihai Burtescu | -90/+90 |
| 2017-12-01 | MIR: s/Lvalue/Place in type names. | Eduard-Mihai Burtescu | -39/+39 |
| 2017-11-28 | MIR: split Operand::Consume into Copy and Move. | Eduard-Mihai Burtescu | -32/+13 |