-
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 8 pull requests #69996
Rollup of 8 pull requests #69996
Commits on Mar 5, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 22ee27b - Browse repository at this point
Copy the full SHA 22ee27bView commit details
Commits on Mar 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 3ba89e8 - Browse repository at this point
Copy the full SHA 3ba89e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for db75b6a - Browse repository at this point
Copy the full SHA db75b6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1f1ca87 - Browse repository at this point
Copy the full SHA 1f1ca87View commit details -
Configuration menu - View commit details
-
Copy full SHA for a9cc010 - Browse repository at this point
Copy the full SHA a9cc010View commit details -
Configuration menu - View commit details
-
Copy full SHA for 33600e4 - Browse repository at this point
Copy the full SHA 33600e4View commit details -
Write backtrace fmt test using relative paths
For some reason the absolute paths were formatted differently on the armhf-gnu target. thread '<unnamed>' panicked at 'assertion failed: `(left == right)` left: `"Backtrace [\n { fn: \"__rust_maybe_catch_panic\" },\n { fn: \"std::rt::lang_start_internal\", file: \"./rust/rt.rs\", line: 300 },\n { fn: \"std::rt::lang_start\", file: \"./rust/rt.rs\", line: 400 },\n]"`, right: `"Backtrace [\n { fn: \"__rust_maybe_catch_panic\" },\n { fn: \"std::rt::lang_start_internal\", file: \"/rust/rt.rs\", line: 300 },\n { fn: \"std::rt::lang_start\", file: \"/rust/rt.rs\", line: 400 },\n]"`', src/libstd/backtrace.rs:486:5
Configuration menu - View commit details
-
Copy full SHA for a2364dc - Browse repository at this point
Copy the full SHA a2364dcView commit details
Commits on Mar 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 9552d2e - Browse repository at this point
Copy the full SHA 9552d2eView commit details
Commits on Mar 11, 2020
-
Compute the correct layout for variants of uninhabited enums and read…
…d a long lost assertion This reverts part of commit 9712fa4.
Configuration menu - View commit details
-
Copy full SHA for cdc7304 - Browse repository at this point
Copy the full SHA cdc7304View commit details -
Co-Authored-By: Ralf Jung <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ec88ffa - Browse repository at this point
Copy the full SHA ec88ffaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 74608c7 - Browse repository at this point
Copy the full SHA 74608c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 543832b - Browse repository at this point
Copy the full SHA 543832bView commit details
Commits on Mar 12, 2020
-
Configuration menu - View commit details
-
Copy full SHA for e809e02 - Browse repository at this point
Copy the full SHA e809e02View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2ad1ab - Browse repository at this point
Copy the full SHA b2ad1abView commit details -
Configuration menu - View commit details
-
Copy full SHA for b9aef25 - Browse repository at this point
Copy the full SHA b9aef25View commit details -
Configuration menu - View commit details
-
Copy full SHA for c8b527e - Browse repository at this point
Copy the full SHA c8b527eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b6518f0 - Browse repository at this point
Copy the full SHA b6518f0View commit details
Commits on Mar 13, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 40ffcc2 - Browse repository at this point
Copy the full SHA 40ffcc2View commit details
Commits on Mar 14, 2020
-
Rollup merge of rust-lang#69122 - dtolnay:backtrace, r=cramertj
Backtrace Debug tweaks - Change Debug representation of disabled and unsupported backtraces to use \<placeholder\> style, same as what we do for debug printing locked mutexes and mutably borrowed refcells; ```diff - Error { msg: "...", backtrace: disabled backtrace } + Error { msg: "...", backtrace: <disabled> } ``` - Remove quotes around unresolved symbol names; ```diff - Backtrace [{ fn: "<unknown>" }] + Backtrace [{ fn: <unknown> }] ``` - Add quotes around file paths; ```diff - Backtrace [{ fn: "krate::main", file: /path/to/main.rs, line: 10 }] + Backtrace [{ fn: "krate::main", file: "/path/to/main.rs", line: 10 }] ``` - Add test.
Configuration menu - View commit details
-
Copy full SHA for 8f35707 - Browse repository at this point
Copy the full SHA 8f35707View commit details -
Rollup merge of rust-lang#69498 - mark-i-m:describe-it-2, r=matthewja…
…sper Change "method" to "associated function" r? @matthewjasper cc @Centril @eddyb rust-lang#67742 I'm opening this mostly as a test to see what the diagnostic changes would be. It seems that this makes them somewhat more verbose, and I'm not sure it's worth it... The relevant changes are the last two commits (it is rebased on top of rust-lang#67742)
Configuration menu - View commit details
-
Copy full SHA for 0ffd85d - Browse repository at this point
Copy the full SHA 0ffd85dView commit details -
Rollup merge of rust-lang#69589 - petrochenkov:maccall, r=Centril
ast: `Mac`/`Macro` -> `MacCall` It's now obvious that these refer to macro calls rather than to macro definitions. It's also a single name instead of two different names in different places. `rustc_expand` usually calls macro calls in a wide sense (including attributes and derives) "macro invocations", but structures and variants renamed in this PR are only relevant to fn-like macros, so it's simpler and clearer to just call them calls. cc rust-lang#63586 (comment) r? @eddyb
Configuration menu - View commit details
-
Copy full SHA for 7a252f7 - Browse repository at this point
Copy the full SHA 7a252f7View commit details -
Rollup merge of rust-lang#69729 - RalfJung:backtrace, r=Mark-Simulacrum
update backtrace crate In particular this release includes rust-lang/backtrace-rs#297 and rust-lang/backtrace-rs#300.
Configuration menu - View commit details
-
Copy full SHA for abbb9f4 - Browse repository at this point
Copy the full SHA abbb9f4View commit details -
Rollup merge of rust-lang#69738 - mark-i-m:assoc-fn-2, r=Centril
More Method -> AssocFn renaming r? @Centril @eddyb cc rust-lang#60163 Blocked on rust-lang#69674
Configuration menu - View commit details
-
Copy full SHA for 7cae549 - Browse repository at this point
Copy the full SHA 7cae549View commit details -
Rollup merge of rust-lang#69768 - oli-obk:union_field_ice, r=eddyb,Ra…
…lfJung Compute the correct layout for variants of uninhabited enums r? @eddyb cc @RalfJung fixes rust-lang#69191 cc rust-lang#69763
Configuration menu - View commit details
-
Copy full SHA for 5ef02a5 - Browse repository at this point
Copy the full SHA 5ef02a5View commit details -
Rollup merge of rust-lang#69929 - cuviper:unicode-13.0.0, r=Mark-Simu…
…lacrum Regenerate tables for Unicode 13.0.0
Configuration menu - View commit details
-
Copy full SHA for 8187795 - Browse repository at this point
Copy the full SHA 8187795View commit details -
Rollup merge of rust-lang#69987 - kraai:mailmap, r=nikomatsakis
Add self to .mailmap The variants are only used for [rust-lang/rust-clippy](https://github.com/rust-lang/rust-clippy), but it seems like <https://thanks.rust-lang.org/> only uses this `.mailmap`.
Configuration menu - View commit details
-
Copy full SHA for 1ffa1b7 - Browse repository at this point
Copy the full SHA 1ffa1b7View commit details