| Age | Commit message (Expand) | Author | Lines |
| 2018-04-27 | Allow #[inline] on closures | Amanieu d'Antras | -0/+17 |
| 2018-04-26 | Auto merge of #50253 - nikomatsakis:regressions-2018-04-26, r=eddyb | bors | -0/+22 |
| 2018-04-27 | Add one more prelude layer for extern crate names passed with `--extern` | Vadim Petrochenkov | -0/+21 |
| 2018-04-26 | add regression test | Niko Matsakis | -0/+22 |
| 2018-04-26 | Treat repr(Rust) univariant fieldless enums as a ZST (fixes #15747) | Anthony Ramine | -0/+33 |
| 2018-04-26 | Add a test for casts of univariant C-like enums | Anthony Ramine | -2/+7 |
| 2018-04-25 | Make Vec::new const | Mark Mansi | -0/+15 |
| 2018-04-25 | Fix crate:: in local paths | Manish Goregaokar | -0/+23 |
| 2018-04-25 | compiletest: introduce skip-trans | Tatsuyuki Ishi | -0/+17 |
| 2018-04-25 | Auto merge of #49986 - zofrex:better-derived-argument-names, r=Manishearth | bors | -0/+15 |
| 2018-04-24 | Test format hygiene | James Sanderson | -0/+15 |
| 2018-04-24 | Auto merge of #50096 - alexcrichton:less-simd-warnings, r=michaelwoerister | bors | -0/+35 |
| 2018-04-24 | Auto merge of #49911 - rcoh:master, r=nikomatsakis | bors | -43/+0 |
| 2018-04-23 | Don't allow #[should_panic] with non-() tests | Russell Cohen | -43/+0 |
| 2018-04-22 | Replace GlobalAlloc::oom with a lang item | Steven Fackler | -9/+7 |
| 2018-04-21 | Auto merge of #50121 - pnkfelix:revert-stabilization-of-never-type-et-al, r=a... | bors | -0/+12 |
| 2018-04-20 | rustc: Tweak custom attribute capabilities | Alex Crichton | -7/+7 |
| 2018-04-20 | Revert stabilization of `feature(never_type)`. | Felix S. Klock II | -0/+12 |
| 2018-04-19 | rustc: Whitelist upstream target_features | Alex Crichton | -0/+35 |
| 2018-04-18 | Auto merge of #50017 - tinaun:stabilize-all-the-things, r=sfackler | bors | -1/+1 |
| 2018-04-18 | Auto merge of #49981 - nox:fix-signed-niches, r=eddyb | bors | -0/+20 |
| 2018-04-17 | Auto merge of #49836 - nikomatsakis:nll-facts-prep, r=pnkfelix | bors | -4/+2 |
| 2018-04-17 | Auto merge of #49542 - GuillaumeGomez:intra-link-resolution-error, r=Guillaum... | bors | -1/+1 |
| 2018-04-17 | stabilize `nonnull_cast` feature | tinaun | -1/+1 |
| 2018-04-16 | Remove unwanted auto-linking and update | Guillaume Gomez | -1/+1 |
| 2018-04-16 | Separately gate each target_feature feature | Alex Crichton | -0/+1 |
| 2018-04-16 | Auto merge of #49719 - mark-i-m:no_sep, r=petrochenkov | bors | -23/+6 |
| 2018-04-15 | Properly handle ranges of signed enums using both extremums (fixes #49973) | Anthony Ramine | -0/+20 |
| 2018-04-15 | remove -Znll -- borrowck=mir implies nll now | Niko Matsakis | -4/+2 |
| 2018-04-15 | Auto merge of #49881 - varkor:partialord-opt, r=Manishearth | bors | -0/+18 |
| 2018-04-14 | Replace remaining uses of deprecated Heap with Global | Mike Hommey | -8/+8 |
| 2018-04-14 | Replace remaining uses of deprecated std::heap with std::alloc | Mike Hommey | -4/+4 |
| 2018-04-12 | Rename alloc::Void to alloc::Opaque | Simon Sapin | -8/+8 |
| 2018-04-12 | Use NonNull<Void> instead of *mut u8 in the Alloc trait | Mike Hommey | -12/+13 |
| 2018-04-12 | Remove the now-unit-struct AllocErr parameter of oom() | Simon Sapin | -5/+5 |
| 2018-04-12 | Use the GlobalAlloc trait for #[global_allocator] | Simon Sapin | -19/+19 |
| 2018-04-12 | Auto merge of #49371 - scottmcm:catch-wrapping, r=nikomatsakis | bors | -13/+12 |
| 2018-04-12 | Auto merge of #48528 - bitshifter:repr_packed, r=eddyb | bors | -68/+520 |
| 2018-04-12 | Auto merge of #49698 - SimonSapin:unicode-for-everyone, r=alexcrichton | bors | -3/+1 |
| 2018-04-12 | Dedicated tracking issue for UnicodeVersion and UNICODE_VERSION. | Simon Sapin | -3/+1 |
| 2018-04-12 | Rollup merge of #48270 - leodasvacas:refactor-casts, r=nikomatsakis | kennytm | -0/+5 |
| 2018-04-12 | Rollup merge of #49730 - sinkuu:fix_ice_49556, r=cramertj | kennytm | -0/+22 |
| 2018-04-11 | Add test for derive(PartialOrd) correctness | varkor | -0/+18 |
| 2018-04-11 | Implementation of `#[repr(packed(n))]` RFC 1399. | Cameron Hart | -68/+520 |
| 2018-04-11 | Rollup merge of #49795 - nox:niche-with-uninhabited-fields, r=eddyb | kennytm | -0/+7 |
| 2018-04-10 | Add ok-wrapping to catch blocks, per RFC | Scott McMurray | -13/+12 |
| 2018-04-09 | in which the non-shorthand patterns lint keeps its own counsel in macros | Zack M. Davis | -0/+24 |
| 2018-04-09 | Properly look for uninhabitedness of variants in niche-filling check | Anthony Ramine | -0/+7 |
| 2018-04-08 | Auto merge of #49704 - leodasvacas:fix-#49344, r=nikomatsakis | bors | -0/+4 |
| 2018-04-07 | Auto merge of #49692 - sinkuu:main_fix, r=arielb1 | bors | -0/+30 |