Skip to content

Commit e494df4

Browse files
committed
remove 128bit atomics, they are anyway not exposed on those targets
1 parent 6605116 commit e494df4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

library/core/src/sync/atomic.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,7 @@
103103
//! | `target_arch` | Size limit |
104104
//! |---------------|---------|
105105
//! | `x86`, `arm`, `mips`, `mips32r6, `powerpc`, `riscv32`, `sparc`, `hexagon` | 4 bytes |
106-
//! | `x86_64`, `aarch64`, `loongarch64`, `mips64`, `mips64r6`, `powerpc64`, `riscv64`, `sparc64` | 8 bytes |
107-
//! | `s390x`, `powerpc64` with `target_feature = "quadword-atomics"` | 16 bytes |
106+
//! | `x86_64`, `aarch64`, `loongarch64`, `mips64`, `mips64r6`, `powerpc64`, `riscv64`, `sparc64`, `s390x` | 8 bytes |
108107
//!
109108
//! Atomics loads that are larger than this limit as well as atomic loads with ordering other
110109
//! than `Relaxed`, as well as *all* atomic loads on targets not listed in the table, might still be

0 commit comments

Comments
 (0)