-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 13 pull requests #53197
Rollup of 13 pull requests #53197
Commits on Aug 5, 2018
-
Configuration menu - View commit details
-
Copy full SHA for c70eb4b - Browse repository at this point
Copy the full SHA c70eb4bView commit details
Commits on Aug 6, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 70cafec - Browse repository at this point
Copy the full SHA 70cafecView commit details -
Configuration menu - View commit details
-
Copy full SHA for e8bb7bf - Browse repository at this point
Copy the full SHA e8bb7bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for b011b09 - Browse repository at this point
Copy the full SHA b011b09View commit details
Commits on Aug 7, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 44d32d4 - Browse repository at this point
Copy the full SHA 44d32d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 43850e0 - Browse repository at this point
Copy the full SHA 43850e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6608552 - Browse repository at this point
Copy the full SHA 6608552View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4eb52ff - Browse repository at this point
Copy the full SHA 4eb52ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for d5f8edf - Browse repository at this point
Copy the full SHA d5f8edfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a3b331 - Browse repository at this point
Copy the full SHA 3a3b331View commit details -
Make sure upstream object files are added to staticlibs when compiling
with ThinLTO and cross-lang-lto. Normally, when compiling with whole-crate-graph ThinLTO, we expect rustc's LTO step to "uplift" upstream object files/LLVM modules to the current set of compilation artifacts. Therefore the staticlib creation code skips this uplifting. However, when compiling with "cross-language LTO" (i.e. defer LTO to the actual linker), the LTO step in rustc is not performed, so we have to take care of copying upstream object files during archive creation (like we already do when compiling without any LTO).
Configuration menu - View commit details
-
Copy full SHA for aa9eeff - Browse repository at this point
Copy the full SHA aa9eeffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 54fba3a - Browse repository at this point
Copy the full SHA 54fba3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 386e000 - Browse repository at this point
Copy the full SHA 386e000View commit details -
Add test case for including upstream object files in staticlibs when …
…doing cross-lang LTO.
Configuration menu - View commit details
-
Copy full SHA for 3742f4d - Browse repository at this point
Copy the full SHA 3742f4dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f2969ed - Browse repository at this point
Copy the full SHA f2969edView commit details -
Configuration menu - View commit details
-
Copy full SHA for b27a161 - Browse repository at this point
Copy the full SHA b27a161View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ce865e - Browse repository at this point
Copy the full SHA 5ce865eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 020b073 - Browse repository at this point
Copy the full SHA 020b073View commit details
Commits on Aug 8, 2018
-
Avoid increased alignment of TLS segments on Fuchsia
This is a temporary workaround for Fuchsia's libc not supporting TLS segments with alignments greater than 32 bytes. It should be reverted ASAP following the fix to libc.
Configuration menu - View commit details
-
Copy full SHA for 877c469 - Browse repository at this point
Copy the full SHA 877c469View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2cdaf3b - Browse repository at this point
Copy the full SHA 2cdaf3bView commit details -
Suggest comma when missing in macro call
When missing a comma in a macro call, suggest it, regardless of position. When a macro call doesn't match any of the patterns, check if the call's token stream could be missing a comma between two idents, and if so, create a new token stream containing the comma and try to match against the macro patterns. If successful, emit the suggestion.
Configuration menu - View commit details
-
Copy full SHA for f4039af - Browse repository at this point
Copy the full SHA f4039afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a70050 - Browse repository at this point
Copy the full SHA 3a70050View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9876e38 - Browse repository at this point
Copy the full SHA 9876e38View commit details -
Rollup merge of rust-lang#52773 - ljedrz:unncecessary_patterns, r=nik…
…omatsakis Avoid unnecessary pattern matching against Option and Result
Configuration menu - View commit details
-
Copy full SHA for 6f7a937 - Browse repository at this point
Copy the full SHA 6f7a937View commit details -
Rollup merge of rust-lang#53031 - michaelwoerister:cross-lto, r=alexc…
…richton Apply some fixes to cross-language LTO (especially when targeting MSVC) This PR contains a few fixes that were needed in order to get Firefox compiling with Rust/C++ cross-language ThinLTO on Windows. The commits are self-contained and should be self-explanatory. r? @alexcrichton
Configuration menu - View commit details
-
Copy full SHA for f6ecd18 - Browse repository at this point
Copy the full SHA f6ecd18View commit details -
Rollup merge of rust-lang#53085 - ljedrz:cleanup_syntax_structures, r…
…=Mark-Simulacrum Move SmallVector and ThinVec out of libsyntax - move `libsyntax::util::SmallVector` tests to `librustc_data_structures::small_vec` - remove `libsyntax::util::SmallVector` - move `libsyntax::util::thin_vec` to `librustc_data_structures::thin_vec` Other than moving these data structures where they belong it allows modules using `SmallVector<T>` (`SmallVec<[T; 1]>`) to specify their own length (e.g. 8 or 32) independently from `libsyntax`.
Configuration menu - View commit details
-
Copy full SHA for 9da5d25 - Browse repository at this point
Copy the full SHA 9da5d25View commit details -
Rollup merge of rust-lang#53094 - GuillaumeGomez:automatic-expand, r=nrc
Automatically expand section if url id point to one of its component Fixes rust-lang#52517. r? @nrc
Configuration menu - View commit details
-
Copy full SHA for f3d57ef - Browse repository at this point
Copy the full SHA f3d57efView commit details -
Rollup merge of rust-lang#53100 - VPashkov:issue-52456-improper_ctype…
…s, r=eddyb Fix improper_ctypes lint for individual foreign items Fixes rust-lang#52456. r? @eddyb
Configuration menu - View commit details
-
Copy full SHA for c346391 - Browse repository at this point
Copy the full SHA c346391View commit details -
Rollup merge of rust-lang#53110 - Xanewok:save-analysis-remap-path, r…
…=nrc Account for --remap-path-prefix in save-analysis Fixes rust-lang#52549. Didn't add a test since save-analysis is still unstable, only tested this locally. Should I add a test for that? If so, is run-make-fulldeps an appropriate format? Session is already created with remapped working directory, so use that instead of the actual cwd. This was the only place affected, since the rest of the paths in save-analysis are directly derived from files in spans from `sess.codemap()`, which already creates remapped ones. r? @nrc
Configuration menu - View commit details
-
Copy full SHA for e35ca13 - Browse repository at this point
Copy the full SHA e35ca13View commit details -
Rollup merge of rust-lang#53116 - jakllsch:netbsd-unsigned-char, r=al…
…excrichton NetBSD: fix signedess of char
Configuration menu - View commit details
-
Copy full SHA for 5d2deee - Browse repository at this point
Copy the full SHA 5d2deeeView commit details -
Rollup merge of rust-lang#53131 - davidtwco:issue-52663-thread-local-…
…static, r=nikomatsakis NLL says something "does not live long enough" when talking about a (thread-local) static Part of rust-lang#52663. r? @nikomatsakis
Configuration menu - View commit details
-
Copy full SHA for 5cfdbae - Browse repository at this point
Copy the full SHA 5cfdbaeView commit details -
Rollup merge of rust-lang#53152 - michaelwoerister:reenable-drop-loca…
…tion-debuginfo-test, r=kennytm Re-enable drop-locations debuginfo tests. The `-O -C no-prepopulate-passes` workaround doesn't seem to be needed anymore, so it works again for my version of GDB. Let's see what CI says.
Configuration menu - View commit details
-
Copy full SHA for 42edec6 - Browse repository at this point
Copy the full SHA 42edec6View commit details -
Rollup merge of rust-lang#53154 - michaelwoerister:reenable-some-debu…
…ginfo-tests, r=kennytm Re-enable a bunch of debuginfo tests. Re-enable some more debuginfo tests that actually seem to work.
Configuration menu - View commit details
-
Copy full SHA for 197861a - Browse repository at this point
Copy the full SHA 197861aView commit details -
Rollup merge of rust-lang#53179 - gnzlbg:patch-3, r=alexcrichton
Whitelist wasm32 simd128 target feature r? @alexcrichton
Configuration menu - View commit details
-
Copy full SHA for 26511ef - Browse repository at this point
Copy the full SHA 26511efView commit details -
Rollup merge of rust-lang#53180 - cramertj:tls-align, r=alexcrichton
Avoid increased alignment of TLS segments on Fuchsia This is a temporary workaround for Fuchsia's libc not supporting TLS segments with alignments greater than 32 bytes. It should be reverted ASAP following the fix to libc. cc @petrhosek r? @alexcrichton
Configuration menu - View commit details
-
Copy full SHA for 1729652 - Browse repository at this point
Copy the full SHA 1729652View commit details -
Rollup merge of rust-lang#53183 - estebank:println-comma, r=oli-obk
Suggest comma when missing in macro call When missing a comma in a macro call, suggest it, regardless of position. When a macro call doesn't match any of the patterns, check if the call's token stream could be missing a comma between two idents, and if so, create a new token stream containing the comma and try to match against the macro patterns. If successful, emit the suggestion. This works on arbitrary macros, with no need of special support from the macro writers. ``` error: no rules expected the token `d` --> $DIR/missing-comma.rs:26:18 | LL | foo!(a, b, c d, e); | -^ | | | help: missing comma here ``` Follow up to rust-lang#52397.
Configuration menu - View commit details
-
Copy full SHA for 35f7927 - Browse repository at this point
Copy the full SHA 35f7927View commit details