-
Notifications
You must be signed in to change notification settings - Fork 13k
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
LLVM 16: Switch to using MemoryEffects #103977
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rustbot
added
S-waiting-on-review
Status: Awaiting review from the assignee but also interested parties.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
labels
Nov 4, 2022
nikic
added
the
llvm-main
Marks PRs that are making Rust work with LLVM main (this label is consumed by CI tooling)
label
Nov 4, 2022
durin42
reviewed
Nov 4, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM modulo the typo I spotted
@bors r+ rollup |
bors
added
S-waiting-on-bors
Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
and removed
S-waiting-on-review
Status: Awaiting review from the assignee but also interested parties.
labels
Nov 4, 2022
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Nov 5, 2022
…iaskrgr Rollup of 7 pull requests Successful merges: - rust-lang#103868 (Use `TraitEngine` (by itself) less) - rust-lang#103878 (Fix artifact version/channel detection for stable) - rust-lang#103946 (Cleanup bind_pattern args) - rust-lang#103956 (Make mir opt unused file check blessable) - rust-lang#103977 (LLVM 16: Switch to using MemoryEffects) - rust-lang#103980 (rustdoc: simplify search results CSS and DOM) - rust-lang#103984 (Refactor tcx mk_const parameters.) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
aarongable
pushed a commit
to chromium/chromium
that referenced
this pull request
Nov 22, 2022
Update nightly release from 2022-11-01 to 2022-11-18 Rolls in: * rust-lang/rust#103367 * rust-lang/rust#103977 Fixed: 1383950 Change-Id: I60ad4a8209eafac4d944a9f6ef873359062dd1ba No-Try: true Change-Id: I60ad4a8209eafac4d944a9f6ef873359062dd1ba Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4013723 Auto-Submit: Collin Baker <collinbaker@chromium.org> Reviewed-by: danakj <danakj@chromium.org> Commit-Queue: Collin Baker <collinbaker@chromium.org> Cr-Commit-Position: refs/heads/main@{#1074798}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
llvm-main
Marks PRs that are making Rust work with LLVM main (this label is consumed by CI tooling)
S-waiting-on-bors
Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adapts the compiler to the changes required by llvm/llvm-project@304f1d5.
AFAICT,
WriteOnly
isn't used by the compiler, allReadNone
uses were migrated and the remaining use ofReadOnly
is only for function parameters.To simplify the FFI, this PR uses an enum to represent
MemoryEffects
across the FFI boundary, which then gets mapped to the matching static factory method when constructing the attribute.Fixes #103961.
@rustbot label +llvm-main
r? @nikic