| Age | Commit message (Expand) | Author | Lines |
| 2018-06-30 | more s/llvm-tools/llvm-tools-preview/ | Jorge Aparicio | -5/+5 |
| 2018-06-29 | rename the llvm-tools component to llvm-tools-preview and tweak its image | Jorge Aparicio | -7/+10 |
| 2018-06-29 | Auto merge of #51891 - glandium:llvm, r=alexcrichton | bors | -0/+0 |
| 2018-06-29 | Auto merge of #51729 - matthewjasper:move-errors, r=nikomatsakis | bors | -321/+997 |
| 2018-06-29 | Auto merge of #50526 - moxian:just-fix, r=alexcrichton | bors | -101/+398 |
| 2018-06-29 | Auto merge of #51290 - Pslydhh:master, r=alexcrichton | bors | -2/+8 |
| 2018-06-29 | Update LLVM to 1c817c7a0c828b8fc8e8e462afbe5db41c7052d1 | Mike Hommey | -0/+0 |
| 2018-06-29 | Auto merge of #50357 - seanmonstar:arc-weak-null, r=KodrAus | bors | -20/+36 |
| 2018-06-29 | Auto merge of #51592 - GuillaumeGomez:fix-macro-doc-search, r=GuillaumeGomez | bors | -4/+22 |
| 2018-06-28 | Rollup merge of #51875 - badboy:emscripten-no-wasm, r=nikomatsakis | Mark Rousskov | -1/+3 |
| 2018-06-28 | Rollup merge of #51839 - oli-obk:const_shift_overflow, r=nikomatsakis | Mark Rousskov | -1/+30 |
| 2018-06-28 | Rollup merge of #51822 - estebank:suggest-more, r=nikomatsakis | Mark Rousskov | -38/+59 |
| 2018-06-28 | Rollup merge of #51765 - jonas-schievink:patch-1, r=KodrAus | Mark Rousskov | -2/+2 |
| 2018-06-28 | Rollup merge of #51636 - oli-obk:const_diagnostics, r=eddyb | Mark Rousskov | -784/+483 |
| 2018-06-28 | Change traits to bare FnMut where possible. | moxian | -111/+67 |
| 2018-06-28 | Make msvc symbol extraction/printing functions generic. | moxian | -103/+137 |
| 2018-06-28 | Make stackwalking generic instead of matching on enum variants. | moxian | -133/+147 |
| 2018-06-28 | Load backtrace-related functions only once | moxian | -41/+77 |
| 2018-06-28 | Split separate stackwalk variants into their own functions | moxian | -204/+238 |
| 2018-06-28 | Add a fallback for stacktrace printing for older Windows versions. | moxian | -108/+331 |
| 2018-06-28 | Arc: remove unused allocation from Weak::new() | Sean McArthur | -20/+36 |
| 2018-06-28 | Provide existing ref suggestions for more E0308 errors | Esteban Küber | -38/+59 |
| 2018-06-28 | Auto merge of #51687 - japaric:gh51671, r=alexcrichton | bors | -0/+52 |
| 2018-06-28 | Auto merge of #51630 - joshlf:map-split-perf, r=dtolnay | bors | -34/+40 |
| 2018-06-28 | Explicitely disable WASM code generation for Emscripten | Jan-Erik Rediger | -1/+3 |
| 2018-06-28 | Auto merge of #50997 - michaelwoerister:pre-analyze-filemaps, r=Mark-Simulacrum | bors | -232/+553 |
| 2018-06-28 | Rebase fallout | Oliver Schneider | -1/+1 |
| 2018-06-28 | Turn the use of erroneous constants into errors again | Oliver Schneider | -42/+45 |
| 2018-06-28 | Don't const propagate the body of constants | Oliver Schneider | -179/+94 |
| 2018-06-28 | Merge `ConstVal` and `ConstValue` | Oliver Schneider | -338/+201 |
| 2018-06-28 | Fixup | Oliver Schneider | -8/+6 |
| 2018-06-28 | Move everything over from `middle::const_val` to `mir::interpret` | Oliver Schneider | -166/+158 |
| 2018-06-28 | Move the Lrc outside the error type and name the fields | Oliver Schneider | -33/+46 |
| 2018-06-28 | Remove unused type | Oliver Schneider | -18/+0 |
| 2018-06-28 | Address review comments | Oliver Schneider | -9/+9 |
| 2018-06-28 | Eliminate old CTFE's `ErrKind` | Oliver Schneider | -114/+50 |
| 2018-06-28 | Simplify const error reporting | Oliver Schneider | -10/+7 |
| 2018-06-28 | Fix FileMap::line_begin_pos(). | Michael Woerister | -7/+7 |
| 2018-06-28 | Fix rebase | Vadim Petrochenkov | -58/+71 |
| 2018-06-28 | incremental: Do not hash spans for things that didn't have spans previously | Vadim Petrochenkov | -9/+9 |
| 2018-06-28 | Support delegation in stable hashing macros | Vadim Petrochenkov | -280/+115 |
| 2018-06-28 | Use `Ident`s for associated item definitions in HIR | Vadim Petrochenkov | -207/+176 |
| 2018-06-28 | Use `Ident`s in a number of structures in HIR | Vadim Petrochenkov | -156/+125 |
| 2018-06-28 | Use `Ident`s for path segments in HIR | Vadim Petrochenkov | -90/+88 |
| 2018-06-28 | Use `Ident`s for associated type bindings in HIR | Vadim Petrochenkov | -36/+38 |
| 2018-06-28 | Use `Ident`s for lifetimes in HIR | Vadim Petrochenkov | -73/+93 |
| 2018-06-28 | Auto merge of #51444 - estebank:impl-static, r=nikomatsakis | bors | -1/+206 |
| 2018-06-28 | Auto merge of #51538 - nikomatsakis:nll-perf-examination, r=eddyb | bors | -1767/+3139 |
| 2018-06-27 | Auto merge of #51859 - kennytm:rollup, r=kennytm | bors | -67/+271 |
| 2018-06-28 | Rollup merge of #51842 - rust-lang:align-is-nonzero, r=cramertj | kennytm | -0/+2 |