| Age | Commit message (Expand) | Author | Lines |
| 2018-03-25 | Move linker code to the Linker trait instead. | Emilio Cobos Álvarez | -14/+32 |
| 2018-03-25 | try to fix the build on older LLVM versions. | Emilio Cobos Álvarez | -0/+7 |
| 2018-03-25 | librustc_trans: Mark some profiler symbols as exported to avoid LTO removing ... | Emilio Cobos Álvarez | -0/+14 |
| 2018-03-25 | librustc_trans: Turn PGO diagnostics into warnings. | Emilio Cobos Álvarez | -1/+1 |
| 2018-03-25 | librustc_trans: Gate the preinliner with another -Z flag. | Emilio Cobos Álvarez | -1/+3 |
| 2018-03-25 | librustc: Convert -C pgo-gen and -C pgo-use into -Z flags. | Emilio Cobos Álvarez | -4/+6 |
| 2018-03-25 | librustc_trans: disable profiling pre-inlining. | Emilio Cobos Álvarez | -0/+1 |
| 2018-03-25 | librustc_llvm: Show PGO diagnostics properly. | Emilio Cobos Álvarez | -2/+7 |
| 2018-03-25 | rustc_trans: Fix PGO generation linking on Linux by adding the relevant linke... | Emilio Cobos Álvarez | -0/+14 |
| 2018-03-25 | rustc_trans: disable probestack when using pgo-gen. | Emilio Cobos Álvarez | -0/+5 |
| 2018-03-25 | rustc_llvm: rustc_trans: Thread the PGO config down to the pass manager builder. | Emilio Cobos Álvarez | -5/+32 |
| 2018-03-25 | Auto merge of #49141 - gnzlbg:simd_select, r=alexcrichton | bors | -0/+21 |
| 2018-03-24 | Add flag for telling the linker to strip debuginfo when building without it | Johannes Löthberg | -1/+12 |
| 2018-03-25 | Rollup merge of #49122 - scottmcm:z-align-attr, r=cramertj | kennytm | -1/+1 |
| 2018-03-24 | don't pass -no-pie to gnu ld | Jimmy Brush | -2/+4 |
| 2018-03-24 | Auto merge of #48482 - davidtwco:issue-47184, r=nikomatsakis | bors | -0/+1 |
| 2018-03-23 | Introduce unsafe offset_from on pointers | Scott McMurray | -1/+14 |
| 2018-03-22 | Make --emit=metadata output metadata regardless of link | varkor | -3/+1 |
| 2018-03-22 | Added UserAssertTy statement. | David Wood | -0/+1 |
| 2018-03-22 | rustc: Add a `#[wasm_import_module]` attribute | Alex Crichton | -20/+331 |
| 2018-03-22 | rustc: Add a `#[wasm_custom_section]` attribute | Alex Crichton | -1/+150 |
| 2018-03-22 | Rollup merge of #49231 - gnzlbg:fix_vec_fminmax, r=rkruppe | kennytm | -4/+4 |
| 2018-03-22 | Rollup merge of #49225 - QuietMisdreavus:all-the-features-all-the-time, r=ale... | kennytm | -4/+26 |
| 2018-03-21 | fix vector fmin/fmax non-fast/fast intrinsics NaN handling | gnzlbg | -4/+4 |
| 2018-03-20 | whitelist every target feature for rustdoc | QuietMisdreavus | -4/+26 |
| 2018-03-20 | Auto merge of #49190 - kennytm:rollup, r=kennytm | bors | -4/+4 |
| 2018-03-20 | Stabilize slice patterns without `..` | Vadim Petrochenkov | -1/+1 |
| 2018-03-20 | Rollup merge of #49092 - mark-i-m:deptrack_readme, r=nikomatsakis | kennytm | -4/+4 |
| 2018-03-18 | add simd_select intrinsic | gnzlbg | -0/+21 |
| 2018-03-17 | Add a -Z flag for LLVM align attributes on arguments | Scott McMurray | -1/+1 |
| 2018-03-17 | Auto merge of #48936 - Zoxc:cstore, r=michaelwoerister | bors | -1/+1 |
| 2018-03-17 | Rollup merge of #48983 - gnzlbg:red, r=alexcrichton | kennytm | -3/+327 |
| 2018-03-16 | Replace many of the last references to readmes | Mark Mansi | -4/+4 |
| 2018-03-16 | Auto merge of #48896 - alexcrichton:bitcode-in-object, r=michaelwoerister | bors | -1/+77 |
| 2018-03-16 | Auto merge of #49051 - kennytm:rollup, r=kennytm | bors | -14/+42 |
| 2018-03-16 | Rollup merge of #49024 - draganmladjenovic:mips64_cabi_sret, r=sanxiyn | kennytm | -13/+1 |
| 2018-03-16 | Rollup merge of #48965 - alexcrichton:add-sha-feature, r=eddyb | kennytm | -0/+1 |
| 2018-03-16 | Rollup merge of #48959 - alexcrichton:signext, r=eddyb | kennytm | -1/+40 |
| 2018-03-15 | error via bug! instead of stderr+terminate | gnzlbg | -9/+57 |
| 2018-03-15 | add compile fail tests | gnzlbg | -1/+47 |
| 2018-03-15 | Keep the fields of RangeInclusive unstable. | kennytm | -0/+1 |
| 2018-03-15 | Stabilize `inclusive_range_syntax` language feature. | kennytm | -1/+1 |
| 2018-03-15 | Stabilize `inclusive_range` library feature. | kennytm | -1/+0 |
| 2018-03-14 | Auto merge of #47630 - canndrew:exhaustive-patterns, r=nikomatsakis | bors | -11/+11 |
| 2018-03-14 | rustc_trans: fix small aggregate returns for big-endian mips64 FFI | dragan.mladjenovic | -13/+1 |
| 2018-03-14 | fix style | gnzlbg | -2/+2 |
| 2018-03-14 | expose ordered/unordered/nanless intirnsics | gnzlbg | -188/+130 |
| 2018-03-15 | Rollup merge of #48874 - jcowgill:mips-features, r=sanxiyn | kennytm | -1/+1 |
| 2018-03-15 | Rollup merge of #48981 - alexcrichton:lld-no-at-file, r=michaelwoerister | kennytm | -1/+12 |
| 2018-03-14 | remove defaulting to unit | Andrew Cann | -11/+11 |