about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-05-05 15:26:06 +0200
committerRalf Jung <post@ralfj.de>2025-05-09 17:39:52 +0200
commit79dfd0a472c7a994bfe090cc95034b36d38e6b53 (patch)
treebd7c929ba0ada3f8f3fd8ee3dbb70dd379bb7977 /compiler/rustc_codegen_gcc
parent0eb0b8cb67ff2c37eab775eaac6b330347e5c97f (diff)
downloadrust-79dfd0a472c7a994bfe090cc95034b36d38e6b53.tar.gz
rust-79dfd0a472c7a994bfe090cc95034b36d38e6b53.zip
remove 'unordered' atomic intrinsics
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-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,