-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 12 pull requests #74019
Rollup of 12 pull requests #74019
Commits on Jun 8, 2020
-
Fallback to xml.etree.ElementTree
The xml.etree.cElementTree has been deprecated since Python 3.3 and removed in Python 3.9 https://bugs.python.org/issue36543.
Configuration menu - View commit details
-
Copy full SHA for 291dce9 - Browse repository at this point
Copy the full SHA 291dce9View commit details
Commits on Jun 24, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6b95f31 - Browse repository at this point
Copy the full SHA 6b95f31View commit details
Commits on Jun 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8caf604 - Browse repository at this point
Copy the full SHA 8caf604View commit details -
Configuration menu - View commit details
-
Copy full SHA for a1217cb - Browse repository at this point
Copy the full SHA a1217cbView commit details
Commits on Jun 28, 2020
-
Configuration menu - View commit details
-
Copy full SHA for db539c6 - Browse repository at this point
Copy the full SHA db539c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4bdf47 - Browse repository at this point
Copy the full SHA e4bdf47View commit details -
Configuration menu - View commit details
-
Copy full SHA for d8a9c61 - Browse repository at this point
Copy the full SHA d8a9c61View commit details
Commits on Jun 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for fc3dc72 - Browse repository at this point
Copy the full SHA fc3dc72View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0aecf3c - Browse repository at this point
Copy the full SHA 0aecf3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for aed88e1 - Browse repository at this point
Copy the full SHA aed88e1View commit details
Commits on Jul 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for b4d0457 - Browse repository at this point
Copy the full SHA b4d0457View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a03432 - Browse repository at this point
Copy the full SHA 1a03432View commit details -
Configuration menu - View commit details
-
Copy full SHA for aac2f73 - Browse repository at this point
Copy the full SHA aac2f73View commit details -
Update src/librustc_builtin_macros/format.rs
Apply suggestion from varkor Co-authored-by: varkor <github@varkor.com>
Configuration menu - View commit details
-
Copy full SHA for 10ebb2c - Browse repository at this point
Copy the full SHA 10ebb2cView commit details -
Apply documentation review suggestions
Co-Authored-By: Ralf Jung <post@ralfj.de>
Configuration menu - View commit details
-
Copy full SHA for ac40d1e - Browse repository at this point
Copy the full SHA ac40d1eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 98789ac - Browse repository at this point
Copy the full SHA 98789acView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7498cad - Browse repository at this point
Copy the full SHA 7498cadView commit details
Commits on Jul 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 0f1adc8 - Browse repository at this point
Copy the full SHA 0f1adc8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b5ac57 - Browse repository at this point
Copy the full SHA 1b5ac57View commit details
Commits on Jul 3, 2020
-
Configuration menu - View commit details
-
Copy full SHA for bdc1f40 - Browse repository at this point
Copy the full SHA bdc1f40View commit details -
Configuration menu - View commit details
-
Copy full SHA for e3f599c - Browse repository at this point
Copy the full SHA e3f599cView commit details -
[mir-opt] Prevent mis-optimization when SimplifyArmIdentity runs
If temporaries are used beyond just the temporary chain, then we can't optimize out the reads and writes.
Configuration menu - View commit details
-
Copy full SHA for 9248d90 - Browse repository at this point
Copy the full SHA 9248d90View commit details -
Configuration menu - View commit details
-
Copy full SHA for 24bfdc9 - Browse repository at this point
Copy the full SHA 24bfdc9View commit details -
Configuration menu - View commit details
-
Copy full SHA for e16d6a6 - Browse repository at this point
Copy the full SHA e16d6a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for df43dcd - Browse repository at this point
Copy the full SHA df43dcdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ed320e - Browse repository at this point
Copy the full SHA 3ed320eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bb6dc7 - Browse repository at this point
Copy the full SHA 3bb6dc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 93d662f - Browse repository at this point
Copy the full SHA 93d662fView commit details -
Edit docs for rustc_data_structures::graph::scc
- Add newline to provide concise module summary - Add wikipedia link - Italicize O notation
Configuration menu - View commit details
-
Copy full SHA for 20caf63 - Browse repository at this point
Copy the full SHA 20caf63View commit details -
Configuration menu - View commit details
-
Copy full SHA for d64a4b5 - Browse repository at this point
Copy the full SHA d64a4b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6970c92 - Browse repository at this point
Copy the full SHA 6970c92View commit details
Commits on Jul 4, 2020
-
Rollup merge of rust-lang#73140 - tmiasko:element-tree, r=GuillaumeGomez
Fallback to xml.etree.ElementTree The xml.etree.cElementTree has been deprecated since Python 3.3 and removed in Python 3.9 https://bugs.python.org/issue36543.
Configuration menu - View commit details
-
Copy full SHA for df8f551 - Browse repository at this point
Copy the full SHA df8f551View commit details -
Rollup merge of rust-lang#73670 - davidhewitt:format-args-capture, r=…
…varkor Add `format_args_capture` feature This is the initial implementation PR for [RFC 2795](rust-lang/rfcs#2795). Note that, as dicussed in the tracking issue (rust-lang#67984), the feature gate has been called `format_args_capture`. Next up I guess I need to add documentation for this feature. I've not written any docs before for rustc / std so I would appreciate suggestions on where I should add docs.
Configuration menu - View commit details
-
Copy full SHA for 4a8d9ea - Browse repository at this point
Copy the full SHA 4a8d9eaView commit details -
Rollup merge of rust-lang#73693 - wesleywiser:const_prop_exhaustive_m…
…atch, r=oli-obk Use exhaustive match in const_prop.rs Addresses a comment left by @RalfJung on rust-lang#73613 r? @RalfJung
Configuration menu - View commit details
-
Copy full SHA for 50dcefc - Browse repository at this point
Copy the full SHA 50dcefcView commit details -
Rollup merge of rust-lang#73845 - CAD97:weak-as-unsized-ptr, r=RalfJung
Use &raw in A|Rc::as_ptr This PR uses `&raw` for offsetting `*mut [A]RcInner<T> -> *mut T`. Additionally, this updates the implementation of `Weak::as_ptr` to support unsized `T`, though it does not yet relax the bounds of `Weak::as_ptr`/`into_raw`/`from_raw` to accept unsized `T`.
Configuration menu - View commit details
-
Copy full SHA for 9a659c5 - Browse repository at this point
Copy the full SHA 9a659c5View commit details -
Rollup merge of rust-lang#73861 - GuillaumeGomez:create-e0767, r=Dyla…
…n-DPC Create E0768 r? @Dylan-DPC
Configuration menu - View commit details
-
Copy full SHA for 6339abd - Browse repository at this point
Copy the full SHA 6339abdView commit details -
Rollup merge of rust-lang#73881 - pierwill:pierwill-citations, r=jona…
…s-schievink Standardize bibliographic citations in rustc API docs See rust-lang#73877.
Configuration menu - View commit details
-
Copy full SHA for d46de10 - Browse repository at this point
Copy the full SHA d46de10View commit details -
Rollup merge of rust-lang#73925 - eduardosm:improve-pr72617-comments,…
… r=RalfJung Improve comments from rust-lang#72617, as suggested by RalfJung r? @RalfJung
Configuration menu - View commit details
-
Copy full SHA for 9d0ca38 - Browse repository at this point
Copy the full SHA 9d0ca38View commit details -
Rollup merge of rust-lang#73949 - wesleywiser:simplify_try_fixes, r=o…
…li-obk [mir-opt] Fix mis-optimization and other issues with the SimplifyArmIdentity pass This does not yet attempt re-enabling the pass, but it does resolve a number of issues with the pass. r? @oli-obk I believe this closes rust-lang#73223.
Configuration menu - View commit details
-
Copy full SHA for 60cad20 - Browse repository at this point
Copy the full SHA 60cad20View commit details -
Rollup merge of rust-lang#73984 - pierwill:pierwill-tarjan, r=jonas-s…
…chievink Edit docs for rustc_data_structures::graph::scc - Add newline to provide concise module summary - Add wikipedia link - Italicize O notation
Configuration menu - View commit details
-
Copy full SHA for 70c4b2f - Browse repository at this point
Copy the full SHA 70c4b2fView commit details -
Rollup merge of rust-lang#73985 - e00E:fix-getting-started-link, r=jo…
…nas-schievink Fix "getting started" link The previous link is 404.
Configuration menu - View commit details
-
Copy full SHA for e4c505b - Browse repository at this point
Copy the full SHA e4c505bView commit details -
Rollup merge of rust-lang#73997 - rust-lang:lcnr-patch-1, r=jonas-sch…
…ievink fix typo r? @Dylan-DPC
Configuration menu - View commit details
-
Copy full SHA for e005c97 - Browse repository at this point
Copy the full SHA e005c97View commit details -
Rollup merge of rust-lang#73999 - eddyb:svv-prereq, r=Mark-Simulacrum
Bump mingw-check CI image from Ubuntu 16.04 to 18.04. I chose 18.04 because we use it for other builders, and it's enough to get a version of MinGW that can build `libssh2-sys`. This is a prereq for rust-lang#73902, where `libssh2-sys` shows up as an indirect dependency of `x.py check src/tools/semverver` (through `src/tools/cargo`, which we don't currently `x.py check` because it's not in-tree). See also rust-lang#73902 (comment). r? @Mark-Simulacrum cc @mati865
Configuration menu - View commit details
-
Copy full SHA for d69a846 - Browse repository at this point
Copy the full SHA d69a846View commit details