remove leftover mentions of skol and int from the compiler#73055
remove leftover mentions of skol and int from the compiler#73055bors merged 3 commits intorust-lang:masterfrom
skol and int from the compiler#73055Conversation
|
(rust_highfive has picked a reviewer for you, use r? to override) |
skol and int from the compilerskol and int from the compiler
matthewjasper
left a comment
There was a problem hiding this comment.
r=me I'm not sure if you would want to remove the dead code now or in a follow up PR.
|
The job Click to expand the log.I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
|
☔ The latest upstream changes (presumably #72114) made this pull request unmergeable. Please resolve the merge conflicts. |
| /// Moreover, before committing the snapshot, you must eventually call | ||
| /// either `plug_leaks` or `pop_placeholders` to remove the placeholder | ||
| /// regions. If you rollback the snapshot (or are using a probe), then | ||
| /// the pop occurs as part of the rollback, so an explicit call is not |
There was a problem hiding this comment.
@matthewjasper I removed the outdated note here, even if the new one doesn't completely explain what needs to be done, I would still like to land this as is now.
|
@bors r+ |
|
📌 Commit 180334c has been approved by |
Rollup of 9 pull requests Successful merges: - rust-lang#72600 (Properly encode AnonConst into crate metadata) - rust-lang#73055 (remove leftover mentions of `skol` and `int` from the compiler) - rust-lang#73058 (Support sanitizers on aarch64-unknown-linux-gnu) - rust-lang#73171 (RISC-V Emulated Testing) - rust-lang#73404 (Update CFGuard syntax) - rust-lang#73444 (ci: disable alt build during try builds) - rust-lang#73471 (Prevent attacker from manipulating FPU tag word used in SGX enclave) - rust-lang#73539 (Deprecate `Vec::remove_item`) - rust-lang#73543 (Clean up E0695 explanation) Failed merges: r? @ghost
remove leftover mentions of `skol` and `int` from the compiler This PR mostly changes `skol` -> `placeholder` and all cases where `int` is used as a type to `i32`.
As rust-lang#72114 and rust-lang#73055 were merged so closely together I think this accidentally happened while rebasing
…-schievink Revert the revert of renaming traits::VTable to ImplSource As rust-lang#72114 and rust-lang#73055 were merged so closely together I think this accidentally happened while rebasing
This PR mostly changes
skol->placeholderand all cases whereintis used as a type toi32.