-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
rustc_codegen_ssa: cleanup AtomicOrdering
#97369
Conversation
Some changes occured to rustc_codegen_gcc cc @antoyo |
(rust-highfive has picked a reviewer for you, use r? to override) |
* Remove unused `NotAtomic` ordering. * Rename `Monotonic` to `Relaxed` - a Rust specific name.
7b26185
to
ef83e68
Compare
To understand what's going on here: On the Rust side we use the term "relaxed" where LLVM uses the term "monotonic" and this PR makes the Rust side of things consistently use "relaxed"? |
Yes, that's right. |
📌 Commit ef83e68 has been approved by |
⌛ Testing commit ef83e68 with merge b8f6eaa5cad987c1350d03d46d3b8b827c0e8021... |
The job Click to see the possible cause of the failure (guessed by this bot)
|
💔 Test failed - checks-actions |
@bors retry |
☀️ Test successful - checks-actions |
Finished benchmarking commit (99c4758): comparison url. Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results
CyclesResults
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression Footnotes |
NotAtomic
ordering.Monotonic
toRelaxed
- a Rust specific name.