| Age | Commit message (Expand) | Author | Lines |
| 2020-06-18 | Rollup merge of #70551 - mark-i-m:ty-err-2, r=varkor | Manish Goregaokar | -41/+68 |
| 2020-06-18 | Perform obligation deduplication to avoid buggy `ExistentialMismatch` | Esteban Küber | -3/+13 |
| 2020-06-18 | Add helper method for reusing an existing interned region | Matthew Jasper | -0/+7 |
| 2020-06-18 | Use alloc::Layout in DroplessArena API | Tomasz Miąsko | -12/+5 |
| 2020-06-17 | Unify region variables when projecting associated types | matthewjasper | -0/+3 |
| 2020-06-16 | format derives | Who? Me?! | -13/+2 |
| 2020-06-16 | Rollup merge of #73373 - lzutao:bug-trackcaller, r=Amanieu | Dylan DPC | -21/+21 |
| 2020-06-16 | Rollup merge of #73237 - tmiasko:arena, r=nnethercote | Dylan DPC | -1/+1 |
| 2020-06-16 | fmt; make visit_terminator arg names consistent with the rest | Ralf Jung | -19/+19 |
| 2020-06-16 | rename location field of Drop terminators to place | Ralf Jung | -16/+16 |
| 2020-06-16 | remove visit_terminator_kind from MIR visitor | Ralf Jung | -13/+1 |
| 2020-06-16 | Auto merge of #72962 - lcnr:ObligationCause-lrc, r=ecstatic-morse | bors | -10/+47 |
| 2020-06-15 | added test, Operand::const_from_scalar, require_lang_item, & comments | Rich Kadel | -0/+28 |
| 2020-06-15 | Add case for count_code_region() extern lang_item | Rich Kadel | -17/+3 |
| 2020-06-15 | [WIP] injects llvm intrinsic instrprof.increment for coverage reports | Rich Kadel | -3/+17 |
| 2020-06-15 | track caller for delay_span_bug | mark | -22/+4 |
| 2020-06-15 | make all uses of ty::Error or ConstKind::Error delay a span bug | mark | -41/+97 |
| 2020-06-15 | typeck: Use `LocalDefId`s for the unused trait import set | Vadim Petrochenkov | -3/+4 |
| 2020-06-15 | Use `LocalDefId` for import IDs in trait map | Vadim Petrochenkov | -7/+6 |
| 2020-06-15 | Remove use of specialization from librustc_arena | Matthew Jasper | -1/+0 |
| 2020-06-15 | When `'static` is explicit, suggest constraining argument with it | Esteban Küber | -1/+4 |
| 2020-06-15 | Suggest substituting `'static` lifetime in impl/dyn `Trait + 'static` return ... | Esteban Küber | -8/+13 |
| 2020-06-15 | Use track caller for bug! macro | Lzu Tao | -19/+20 |
| 2020-06-15 | Join mutiple lines if it is more readable | Lzu Tao | -2/+1 |
| 2020-06-15 | Auto merge of #73369 - RalfJung:rollup-hl8g9zf, r=RalfJung | bors | -153/+265 |
| 2020-06-15 | Rollup merge of #72879 - RalfJung:miri-tctx-at, r=oli-obk | Ralf Jung | -0/+1 |
| 2020-06-15 | Rollup merge of #72740 - estebank:recursive-indirection, r=matthewjasper | Ralf Jung | -1/+9 |
| 2020-06-15 | Rollup merge of #72707 - matthewjasper:rustc_min_spec, r=oli-obk | Ralf Jung | -152/+255 |
| 2020-06-15 | Fix whitespace | Nathan Corbyn | -1/+1 |
| 2020-06-15 | Fix exports with `#[inline(always)]` | Nathan Corbyn | -10/+5 |
| 2020-06-15 | Export all fns with extern indicator | Nathan Corbyn | -8/+8 |
| 2020-06-15 | Export `#[inline] #[no_mangle]` fns in cdylibs and staticlibs | Nathan Corbyn | -0/+5 |
| 2020-06-15 | Auto merge of #73367 - RalfJung:rollup-4ewvk9b, r=RalfJung | bors | -9/+45 |
| 2020-06-15 | Avoid forming references to an uninitialized memory in DroplessArena | Tomasz Miąsko | -1/+1 |
| 2020-06-15 | Rollup merge of #72598 - Aaron1011:feature/fnmut-capture-span, r=nikomatsakis | Ralf Jung | -1/+9 |
| 2020-06-15 | Rollup merge of #72389 - Aaron1011:feature/move-fn-self-msg, r=nikomatsakis | Ralf Jung | -7/+28 |
| 2020-06-15 | Rollup merge of #71824 - ecstatic-morse:const-check-post-drop-elab, r=oli-obk | Ralf Jung | -1/+8 |
| 2020-06-15 | Auto merge of #72080 - matthewjasper:uniform-impl-trait, r=nikomatsakis | bors | -45/+8 |
| 2020-06-14 | Improve `Instance` docs | Jonas Schievink | -11/+41 |
| 2020-06-14 | Diagnose use of incompatible sanitizers | Tomasz Miąsko | -10/+7 |
| 2020-06-13 | Add MIR phase and query for drop elaboration | Dylan MacKenzie | -1/+8 |
| 2020-06-13 | Rollup merge of #73194 - lzutao:INT-patterns, r=dtolnay | Dylan DPC | -3/+3 |
| 2020-06-13 | Rollup merge of #73066 - ecstatic-morse:query-structural-eq2, r=pnkfelix | Dylan DPC | -0/+62 |
| 2020-06-13 | Prefer the associated consts for pattern matching error | Lzu Tao | -3/+3 |
| 2020-06-12 | Use "reflexive equality" in docs | Dylan MacKenzie | -2/+2 |
| 2020-06-12 | Helper method for whether type has structural equality | Dylan MacKenzie | -0/+62 |
| 2020-06-12 | Rollup merge of #73225 - tmandry:issue-73050, r=oli-obk | Dylan DPC | -10/+1 |
| 2020-06-12 | make miri InterpCx TyCtxtAt a TyCtxt, and separately remember the root span o... | Ralf Jung | -0/+1 |
| 2020-06-12 | Auto merge of #69478 - avr-rust:avr-support-upstream, r=jonas-schievink | bors | -0/+2 |
| 2020-06-12 | Rollup merge of #73033 - Amanieu:asm-tls, r=oli-obk | Dylan DPC | -6/+8 |