| Age | Commit message (Expand) | Author | Lines |
| 2015-07-14 | save-analysis: fix def_ids for method calls | Nick Cameron | -7/+20 |
| 2015-07-14 | save-analysis: handle a few more kinds of paths | Nick Cameron | -1/+4 |
| 2015-07-14 | save-analysis: tweak constructors | Nick Cameron | -9/+17 |
| 2015-07-14 | save-analysis: make generated_code pub | Nick Cameron | -1/+1 |
| 2015-07-13 | Auto merge of #26993 - michaelwoerister:msvc-debuginfo, r=alexcrichton | bors | -0/+24 |
| 2015-07-13 | Correctly detect reassignments to the interior of matched structs/tuples | Björn Steinbrink | -1/+2 |
| 2015-07-12 | Auto merge of #26957 - wesleywiser:rename_connect_to_join, r=alexcrichton | bors | -10/+10 |
| 2015-07-12 | Auto merge of #26895 - jroesch:modernize-typeck-names, r=nikomatsakis | bors | -26/+35 |
| 2015-07-12 | debuginfo: Instruct MSVC linker to generate PDB file if debuginfo is enabled | Michael Woerister | -0/+24 |
| 2015-07-10 | Fix make tidy | Jared Roesch | -6/+15 |
| 2015-07-10 | Rename TypeWithMutability to TypeAndMut | Jared Roesch | -22/+22 |
| 2015-07-10 | Change some instances of .connect() to .join() | Wesley Wiser | -10/+10 |
| 2015-07-10 | Auto merge of #26926 - alexcrichton:llvm-archive-writer, r=brson | bors | -57/+555 |
| 2015-07-10 | trans: Use LLVM's writeArchive to modify archives | Alex Crichton | -57/+555 |
| 2015-07-10 | Auto merge of #26919 - alexcrichton:msvc-turn-off-unwinding, r=brson | bors | -31/+8 |
| 2015-07-10 | Auto merge of #26907 - nrc:save-fns, r=brson | bors | -203/+310 |
| 2015-07-09 | Revert "msvc: Enable landing pads by default" | Alex Crichton | -31/+8 |
| 2015-07-09 | Auto merge of #26904 - bluss:no-repeat, r=alexcrichton | bors | -9/+5 |
| 2015-07-09 | Use vec![elt; n] where possible | Ulrik Sverdrup | -9/+5 |
| 2015-07-09 | save-analysis: API-ify methods | Nick Cameron | -94/+116 |
| 2015-07-09 | save-analysis: factor out helper method | Nick Cameron | -21/+22 |
| 2015-07-09 | save-analysis: API-ify paths | Nick Cameron | -85/+146 |
| 2015-07-09 | save-analysis: api-ify method calls | Nick Cameron | -12/+35 |
| 2015-07-08 | Auto merge of #26869 - alexcrichton:fix-msvc-sepcomp, r=nrc | bors | -238/+178 |
| 2015-07-08 | trans: Link rlibs to dylibs with --whole-archive | Alex Crichton | -116/+119 |
| 2015-07-08 | Remove snake_case names from ty.rs | Jared Roesch | -26/+26 |
| 2015-07-07 | msvc: Get codegen-units working | Alex Crichton | -122/+59 |
| 2015-07-07 | use is_method_call rather than directly accessing the method_map | Ariel Ben-Yehuda | -8/+5 |
| 2015-07-06 | Rollup merge of #26807 - eddyb:trans-normalize, r=cmr | Steve Klabnik | -2/+2 |
| 2015-07-06 | Auto merge of #26757 - oli-obk:style_fixes, r=brson | bors | -310/+284 |
| 2015-07-06 | Auto merge of #26741 - alexcrichton:noinline-destructors, r=brson | bors | -31/+464 |
| 2015-07-06 | lower blanket unsafe block to actual cases of unsafe and adjust indents | Oliver Schneider | -310/+284 |
| 2015-07-05 | rustc_trans: always use normalizing_infer_ctxt. | Eduard Burtescu | -2/+2 |
| 2015-07-04 | rustc: remove MethodOrigin and use the container to distinguish inherent meth... | Eduard Burtescu | -31/+17 |
| 2015-07-04 | rustc: compute the vtable base of a supertrait during selection. Fixes #26339. | Eduard Burtescu | -16/+2 |
| 2015-07-04 | rustc: remove MethodOrigin::Object and use traits::VtableObject instead. | Eduard Burtescu | -212/+140 |
| 2015-07-04 | rustc_trans: remove some outdated and unused logic from callee. | Eduard Burtescu | -19/+19 |
| 2015-07-04 | rustc_lint: use traits::select for methods in unconditional_recursion. | Eduard Burtescu | -3/+2 |
| 2015-07-04 | rustc_trans: explicit impl population is unnecessary in fulfill_obligation. | Eduard Burtescu | -1/+0 |
| 2015-07-04 | rustc: simplify ty::MethodOrigin and avoid trait item indices. | Eduard Burtescu | -69/+35 |
| 2015-07-04 | rustc: remove unused MethodStaticClosure variant of MethodOrigin. | Eduard Burtescu | -5/+3 |
| 2015-07-03 | Add a boolean flag to ExistentialBounds tracking whether the | Niko Matsakis | -0/+10 |
| 2015-07-03 | Auto merge of #26378 - arielb1:unused-mut, r=pnkfelix | bors | -1/+1 |
| 2015-07-03 | Fix ICE caused by Drop implementations for unsized types | Björn Steinbrink | -2/+7 |
| 2015-07-02 | rustc_trans: Disable landing pads on 32-bit MSVC | Alex Crichton | -6/+15 |
| 2015-07-02 | Directly construct lvalue datums for function arguments | Björn Steinbrink | -162/+101 |
| 2015-07-02 | Avoid a needless vector copy in type_of_rust_fn | Björn Steinbrink | -14/+12 |
| 2015-07-02 | Skip the pointless tupling/untupling of argument types in trans_closure | Björn Steinbrink | -12/+1 |
| 2015-07-02 | Auto merge of #26677 - jroesch:fulfillment-context-refactor, r=nrc | bors | -202/+54 |
| 2015-07-02 | Auto merge of #26688 - nrc:map-parent-2, r=manishearth | bors | -8/+8 |