-
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 8 pull requests #103727
Rollup of 8 pull requests #103727
Commits on Oct 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 47703d3 - Browse repository at this point
Copy the full SHA 47703d3View commit details
Commits on Oct 22, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 4216cae - Browse repository at this point
Copy the full SHA 4216caeView commit details
Commits on Oct 23, 2022
-
Configuration menu - View commit details
-
Copy full SHA for e521a8d - Browse repository at this point
Copy the full SHA e521a8dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 86c65d2 - Browse repository at this point
Copy the full SHA 86c65d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for daf3063 - Browse repository at this point
Copy the full SHA daf3063View commit details -
Co-authored-by: Amanieu d'Antras <amanieu@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 979d1a2 - Browse repository at this point
Copy the full SHA 979d1a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e6d60c - Browse repository at this point
Copy the full SHA 4e6d60cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c9cca33 - Browse repository at this point
Copy the full SHA c9cca33View commit details
Commits on Oct 24, 2022
-
Update src/tools/compiletest/src/runtest.rs
Co-authored-by: Mark Rousskov <mark.simulacrum@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f01608c - Browse repository at this point
Copy the full SHA f01608cView commit details
Commits on Oct 27, 2022
-
Accept
TyCtxt
instead ofTyCtxtAt
inTy::is_*
functionsFunctions in answer: - `Ty::is_freeze` - `Ty::is_sized` - `Ty::is_unpin` - `Ty::is_copy_modulo_regions`
Configuration menu - View commit details
-
Copy full SHA for a17ccfa - Browse repository at this point
Copy the full SHA a17ccfaView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc53c8f - Browse repository at this point
Copy the full SHA dc53c8fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c8c4971 - Browse repository at this point
Copy the full SHA c8c4971View commit details -
Configuration menu - View commit details
-
Copy full SHA for bfac2da - Browse repository at this point
Copy the full SHA bfac2daView commit details
Commits on Oct 28, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c442013 - Browse repository at this point
Copy the full SHA c442013View commit details
Commits on Oct 29, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 4b35313 - Browse repository at this point
Copy the full SHA 4b35313View commit details -
spastorino noticed some silly expressions like `item_id.def_id.def_id`. This commit renames several `def_id: OwnerId` fields as `owner_id`, so those expressions become `item_id.owner_id.def_id`. `item_id.owner_id.local_def_id` would be even clearer, but the use of `def_id` for values of type `LocalDefId` is *very* widespread, so I left that alone.
Configuration menu - View commit details
-
Copy full SHA for c8c25ce - Browse repository at this point
Copy the full SHA c8c25ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for f0234f1 - Browse repository at this point
Copy the full SHA f0234f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ef36b8 - Browse repository at this point
Copy the full SHA 0ef36b8View commit details -
Rollup merge of rust-lang#102634 - andrewpollack:refactor-test-rustcf…
…lags, r=Mark-Simulacrum compiletest: Refactor test rustcflags Refactoring `host-rustcflags` and `target-rustcflags` from `Option<String>` to `Vec<String>` Ref: rust-lang#102438 r? `@Mark-Simulacrum`
Configuration menu - View commit details
-
Copy full SHA for 73e7c3a - Browse repository at this point
Copy the full SHA 73e7c3aView commit details -
Rollup merge of rust-lang#102721 - nbdd0121:panic, r=Amanieu
Prevent foreign Rust exceptions from being caught Fix rust-lang#102715 Use the address of a static variable (which is guaranteed to be unique per copy of std) to tell apart if a Rust exception comes from local or foreign Rust code, and abort for the latter.
Configuration menu - View commit details
-
Copy full SHA for 6dd64d3 - Browse repository at this point
Copy the full SHA 6dd64d3View commit details -
Rollup merge of rust-lang#103415 - compiler-errors:tiny-perf-increase…
…-on-diagnostic, r=TaKO8Ki filter candidates in pick probe for diagnostics Fixes rust-lang#103411, though also fine with closing this PR if my opinion (rust-lang#103411 (comment)) is shared that this doesn't need to be fixed. ``` ~/rust3$ time rustc +nightly ~/test.rs 2>/dev/null real 0m4.853s user 0m4.837s sys 0m0.016s ~/rust3$ time rustc +rust3 ~/test.rs 2>/dev/null real 0m0.193s user 0m0.169s sys 0m0.024s ``` Also fixes rust-lang#103427.
Configuration menu - View commit details
-
Copy full SHA for 07b5c6b - Browse repository at this point
Copy the full SHA 07b5c6bView commit details -
Rollup merge of rust-lang#103618 - nnethercote:rename-OwnerId-fields,…
… r=compiler-errors Rename some `OwnerId` fields. `@spastorino` noticed some silly expressions like `item_id.def_id.def_id`. This commit renames several `def_id: OwnerId` fields as `owner_id`, so those expressions become `item_id.owner_id.def_id`. `item_id.owner_id.local_def_id` would be even clearer, but the use of `def_id` for values of type `LocalDefId` is *very* widespread, so I left that alone. r? `@compiler-errors`
Configuration menu - View commit details
-
Copy full SHA for 692a22e - Browse repository at this point
Copy the full SHA 692a22eView commit details -
Rollup merge of rust-lang#103625 - WaffleLapkin:no_tyctxt_dogs_allowe…
…d, r=compiler-errors Accept `TyCtxt` instead of `TyCtxtAt` in `Ty::is_*` functions Functions in answer: - `Ty::is_freeze` - `Ty::is_sized` - `Ty::is_unpin` - `Ty::is_copy_modulo_regions` This allows to remove a lot of useless `.at(DUMMY_SP)`, making the code a bit nicer :3 r? `@compiler-errors`
Configuration menu - View commit details
-
Copy full SHA for 2414a4c - Browse repository at this point
Copy the full SHA 2414a4cView commit details -
Rollup merge of rust-lang#103653 - GuillaumeGomez:missing-impl-privat…
…e-json, r=notriddle Add missing impl blocks for item reexported from private mod in JSON output Fixes rust-lang#102583. Since we don't inline for the JSON output, the impl blocks from private modules are not present when we generate the output. To go around this limitation, in case the impl block doesn't have `#[doc(hidden)]` and is implementing a public item, we don't strip it. cc `@fmease` `@aDotInTheVoid` r? `@notriddle`
Configuration menu - View commit details
-
Copy full SHA for 05ab16b - Browse repository at this point
Copy the full SHA 05ab16bView commit details -
Rollup merge of rust-lang#103699 - compiler-errors:dyn-star-cast-bad,…
… r=TaKO8Ki Emit proper error when casting to `dyn*` Fixes rust-lang#103679
Configuration menu - View commit details
-
Copy full SHA for 679771f - Browse repository at this point
Copy the full SHA 679771fView commit details -
Rollup merge of rust-lang#103719 - joseluis:fix-typos-try-reserve, r=…
…the8472 fix typo in `try_reserve` method from `HashMap` and `HashSet` Currently refers to the `reserve` method, instead of `try_reserve`. Other collections like [Vec](https://doc.rust-lang.org/std/vec/struct.Vec.html#method.try_reserve) & [VecDeque](https://doc.rust-lang.org/std/collections/vec_deque/struct.VecDeque.html#method.try_reserve) shows it well.
Configuration menu - View commit details
-
Copy full SHA for 6425764 - Browse repository at this point
Copy the full SHA 6425764View commit details