| Age | Commit message (Expand) | Author | Lines |
| 2017-11-10 | Separately eliminate self-assignments | sinkuu | -4/+39 |
| 2017-11-10 | Fix MIR CopyPropagation errneously propagating assignments to function arguments | sinkuu | -0/+7 |
| 2017-11-10 | Normalize inlined function in MIR inliner | Shotaro Yamada | -5/+33 |
| 2017-11-10 | Auto merge of #45785 - arielb1:unsafe-fixes, r=eddyb | bors | -69/+113 |
| 2017-11-09 | add a bunch of debug logging to transform::inline | Ariel Ben-Yehuda | -6/+23 |
| 2017-11-06 | Auto merge of #45668 - nikomatsakis:nll-free-region, r=arielb1 | bors | -177/+462 |
| 2017-11-06 | collect unused unsafe code | Ariel Ben-Yehuda | -61/+92 |
| 2017-11-06 | run unsafety checking before dead block collection | Ariel Ben-Yehuda | -4/+12 |
| 2017-11-06 | fix unsafety checking for generators | Ariel Ben-Yehuda | -7/+12 |
| 2017-11-02 | trace span info for constraints and report errors | Niko Matsakis | -26/+104 |
| 2017-11-02 | encapsulate the `Region` struct within region inference | Niko Matsakis | -39/+47 |
| 2017-11-02 | add comments to `region_infer`, restructure a bit | Niko Matsakis | -35/+56 |
| 2017-11-02 | extend NLL regions to include free region indices and add outlives | Niko Matsakis | -110/+289 |
| 2017-11-02 | rename `Lookup` to `TyContext` and pass more info when visiting tys | Niko Matsakis | -23/+22 |
| 2017-11-02 | add TerminatorKind::FalseEdges and use it in matches | Mikhail Modin | -4/+23 |
| 2017-10-31 | remove the NLL pass (it is now invoked by mir borrowck) | Niko Matsakis | -23/+2 |
| 2017-10-31 | change region display to `'_#Nr`, update the `newtype_index!` macro | Niko Matsakis | -1/+1 |
| 2017-10-31 | make the dataflow / mir-borrowck types carry a `'tcx` lifetime | Niko Matsakis | -5/+5 |
| 2017-10-31 | make nll separately invokable | Niko Matsakis | -29/+13 |
| 2017-10-31 | add basic region subtyping inference | Santiago Pastorino | -0/+112 |
| 2017-10-31 | add reborrow constraints | Santiago Pastorino | -0/+35 |
| 2017-10-31 | factor out NLL invocation interface | Niko Matsakis | -76/+123 |
| 2017-10-31 | update the format of liveness debug dumps to be more readable | Niko Matsakis | -24/+61 |
| 2017-10-31 | add subregion between borrow region and resulting reference | Niko Matsakis | -8/+55 |
| 2017-10-31 | preliminary support for may-dangle attribute and drop constraints | Niko Matsakis | -13/+113 |
| 2017-10-31 | extend liveness to distinguish "drop" and "non-drop" uses | Niko Matsakis | -33/+74 |
| 2017-10-31 | introduce liveness constraints into NLL code | Niko Matsakis | -209/+329 |
| 2017-10-31 | extend liveness to compute intrablock liveness and add unit tests | Niko Matsakis | -10/+34 |
| 2017-10-31 | execute liveness, write a simple test | Niko Matsakis | -3/+25 |
| 2017-10-13 | Add License to infer.rs | Santiago Pastorino | -0/+10 |
| 2017-10-13 | TODO -> FIXME | Santiago Pastorino | -4/+4 |
| 2017-10-13 | Add allow_dead code directive to unused methods | Santiago Pastorino | -0/+5 |
| 2017-10-13 | Do not move infcx, just borrow it | Santiago Pastorino | -7/+8 |
| 2017-10-13 | borrow block_data instead of moving it | Santiago Pastorino | -1/+1 |
| 2017-10-13 | sup_def is a mutable reference | Santiago Pastorino | -1/+1 |
| 2017-10-13 | inteference_context should be mut | Santiago Pastorino | -1/+1 |
| 2017-10-13 | Mark Region as public | Santiago Pastorino | -1/+1 |
| 2017-10-13 | Mark free regions handling as TODO | Santiago Pastorino | -9/+10 |
| 2017-10-13 | Initial attempt at implementation of inference layout for nll | Paul Faria | -5/+224 |
| 2017-10-13 | Auto merge of #45013 - chrisvittal:mir_pretty_printing_pr, r=nikomatsakis | bors | -7/+38 |
| 2017-10-08 | Auto merge of #45016 - pnkfelix:mir-borrowck-gather-and-signal-move-errors, r... | bors | -2/+2 |
| 2017-10-04 | Expand mir dump in order to handle NLL pass | Christopher Vittal | -7/+38 |
| 2017-10-04 | Make newtype_index get debug_name using reflection | Santiago Pastorino | -1/+1 |
| 2017-10-04 | Make newtype_index macro use full path to resolve constants | Santiago Pastorino | -2/+0 |
| 2017-10-04 | Generate Idx in nll using newtype_index! | Santiago Pastorino | -15/+3 |
| 2017-10-04 | Convert regions to IndexVec | Santiago Pastorino | -2/+19 |
| 2017-10-04 | Store a new Region value every time we create a new region variable | Paul Faria | -2/+11 |
| 2017-10-04 | Auto merge of #44901 - michaelwoerister:on-demand-eval, r=nikomatsakis | bors | -8/+7 |
| 2017-10-04 | mir-borrowck: Gather move errors during MoveData construction and report them. | Felix S. Klock II | -2/+2 |
| 2017-10-03 | Auto merge of #44896 - qmx:move-resolve-to-librustc, r=arielb1 | bors | -11/+17 |