about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/src/builder.rs
diff options
context:
space:
mode:
authorThe rustc-dev-guide Cronjob Bot <github-actions@github.com>2025-05-15 09:46:22 +0000
committerThe rustc-dev-guide Cronjob Bot <github-actions@github.com>2025-05-15 09:46:22 +0000
commit1fd536c5fb7616f08973dd33074efb94e82eea44 (patch)
tree7b32415cdda158f9c51d195f0f03921c86d8892a /compiler/rustc_codegen_gcc/src/builder.rs
parent4adff2f244140be9ac78c0bd6774bf5acb828029 (diff)
parent414482f6a0d4e7290f614300581a0b55442552a3 (diff)
downloadrust-1fd536c5fb7616f08973dd33074efb94e82eea44.tar.gz
rust-1fd536c5fb7616f08973dd33074efb94e82eea44.zip
Merge from rustc
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/builder.rs')
-rw-r--r--compiler/rustc_codegen_gcc/src/builder.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/builder.rs b/compiler/rustc_codegen_gcc/src/builder.rs
index 6720f6186d1..9e5ebf3a9a4 100644
--- a/compiler/rustc_codegen_gcc/src/builder.rs
+++ b/compiler/rustc_codegen_gcc/src/builder.rs
@@ -2454,7 +2454,6 @@ impl ToGccOrdering for AtomicOrdering {
         use MemOrdering::*;
 
         let ordering = match self {
-            AtomicOrdering::Unordered => __ATOMIC_RELAXED,
             AtomicOrdering::Relaxed => __ATOMIC_RELAXED, // TODO(antoyo): check if that's the same.
             AtomicOrdering::Acquire => __ATOMIC_ACQUIRE,
             AtomicOrdering::Release => __ATOMIC_RELEASE,