| Age | Commit message (Expand) | Author | Lines |
| 2019-06-13 | Add some more comments on how TestKind works | Matthew Jasper | -2/+2 |
| 2019-06-13 | Rollup merge of #61776 - JohnTitor:fix-typo-in-error-codes, r=Centril | Mazdak Farrokhzad | -1/+1 |
| 2019-06-12 | correctly set the `reached_depth` field | Niko Matsakis | -3/+13 |
| 2019-06-12 | Make `FalseEdges` always have two targets | Matthew Jasper | -12/+9 |
| 2019-06-12 | add more debug logs | Niko Matsakis | -2/+40 |
| 2019-06-12 | add the "provisional cache" | Niko Matsakis | -4/+192 |
| 2019-06-12 | add in a depth-first number for stack entries | Niko Matsakis | -0/+16 |
| 2019-06-12 | introduce ProvisionalEvaluationCache | Niko Matsakis | -5/+16 |
| 2019-06-12 | execute cycle check before we consider caching | Niko Matsakis | -62/+83 |
| 2019-06-12 | Use a single lifetime for MIR construction | John Kåre Alsaker | -2/+2 |
| 2019-06-13 | Fix typos | Yuki Okushi | -1/+1 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -975/+1082 |
| 2019-06-12 | rustc: remove some unnecessary lifetimes in -> TyCtxt methods. | Eduard-Mihai Burtescu | -32/+19 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -660/+660 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -274/+271 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -830/+817 |
| 2019-06-12 | Rollup merge of #61688 - RalfJung:is-floating-point, r=cramertj | Mazdak Farrokhzad | -8/+31 |
| 2019-06-12 | Rollup merge of #61568 - Mark-Simulacrum:symbol-fmt-macros, r=estebank | Mazdak Farrokhzad | -35/+35 |
| 2019-06-12 | Rollup merge of #60187 - tmandry:generator-optimization, r=eddyb | Mazdak Farrokhzad | -280/+503 |
| 2019-06-12 | Auto merge of #60187 - tmandry:generator-optimization, r=eddyb | bors | -280/+503 |
| 2019-06-11 | Auto merge of #61741 - Centril:rollup-fgro5kz, r=Centril | bors | -2/+6 |
| 2019-06-11 | propagate depth that was reached, not just whether there was a cycle | Niko Matsakis | -18/+43 |
| 2019-06-11 | introduce a stack depth | Niko Matsakis | -2/+16 |
| 2019-06-11 | rename `evaluate_obligation_recursively` | Niko Matsakis | -5/+6 |
| 2019-06-11 | More review fixes | Tyler Mandry | -36/+13 |
| 2019-06-11 | Auto merge of #61735 - eddyb:must-use-life, r=oli-obk | bors | -63/+66 |
| 2019-06-11 | is_fp and is_floating_point do the same thing, remove the former | Ralf Jung | -8/+31 |
| 2019-06-11 | Rollup merge of #61686 - phansch:librustc_errors_docs, r=estebank | Mazdak Farrokhzad | -2/+6 |
| 2019-06-11 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -30/+26 |
| 2019-06-11 | rustc: deny(unused_lifetimes). | Eduard-Mihai Burtescu | -39/+46 |
| 2019-06-11 | Auto merge of #60463 - mjbshaw:transparent, r=varkor,rkruppe | bors | -14/+10 |
| 2019-06-11 | Auto merge of #61673 - RalfJung:miri-no-hard-float, r=eddyb,oli-obk | bors | -10/+57 |
| 2019-06-10 | Implement RFC 2645 (transparent enums and unions) | Michael Bradshaw | -14/+10 |
| 2019-06-10 | Extract generator_layout as a method | Tyler Mandry | -254/+271 |
| 2019-06-10 | Extract univariant_uninterned as method | Tyler Mandry | -224/+234 |
| 2019-06-10 | Use BitMatrix for storage conflicts | Tyler Mandry | -7/+8 |
| 2019-06-10 | Small review fixes | Tyler Mandry | -36/+43 |
| 2019-06-10 | Overlap locals that never have storage live at the same time | Tyler Mandry | -13/+201 |
| 2019-06-10 | Collect conflict information in GeneratorLayout | Tyler Mandry | -0/+23 |
| 2019-06-10 | Rollup merge of #61570 - varkor:infer-const-arg, r=eddyb | Mazdak Farrokhzad | -22/+23 |
| 2019-06-10 | Rollup merge of #59600 - tobia:master, r=pnkfelix | Mazdak Farrokhzad | -2/+10 |
| 2019-06-10 | Address review comments | Philipp Hansch | -2/+2 |
| 2019-06-10 | librustc_errors: Add some more documentation | Philipp Hansch | -2/+6 |
| 2019-06-09 | Changed usages of `mir` in librustc::mir and librustc_mir to `body` | Jad Ghalayini | -51/+51 |
| 2019-06-09 | Use Symbol for named arguments in fmt_macros | Mark Rousskov | -33/+33 |
| 2019-06-09 | Make a few methods private | Mark Rousskov | -2/+2 |
| 2019-06-09 | make floating point casts nicer with generics | Ralf Jung | -0/+8 |
| 2019-06-09 | Apply suggestions from code review | Ralf Jung | -2/+2 |
| 2019-06-09 | Auto merge of #61653 - oli-obk:visit_place_recursion, r=spastorino | bors | -3/+8 |
| 2019-06-09 | trait-ize binary_float_op | Ralf Jung | -0/+14 |