diff options
| author | Ralf Jung <post@ralfj.de> | 2023-10-17 07:56:49 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2023-10-17 07:56:49 +0200 |
| commit | e494df436df105f8a3d767dfcd8e51c597c0fca5 (patch) | |
| tree | a87430428c67f1478a98ec3e19d5f5880fa2a6b2 | |
| parent | 6605116463a4c1173db7026ee21a22c963569b44 (diff) | |
| download | rust-e494df436df105f8a3d767dfcd8e51c597c0fca5.tar.gz rust-e494df436df105f8a3d767dfcd8e51c597c0fca5.zip | |
remove 128bit atomics, they are anyway not exposed on those targets
| -rw-r--r-- | library/core/src/sync/atomic.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/core/src/sync/atomic.rs b/library/core/src/sync/atomic.rs index 5a429826c0d..073488817c4 100644 --- a/library/core/src/sync/atomic.rs +++ b/library/core/src/sync/atomic.rs @@ -103,8 +103,7 @@ //! | `target_arch` | Size limit | //! |---------------|---------| //! | `x86`, `arm`, `mips`, `mips32r6, `powerpc`, `riscv32`, `sparc`, `hexagon` | 4 bytes | -//! | `x86_64`, `aarch64`, `loongarch64`, `mips64`, `mips64r6`, `powerpc64`, `riscv64`, `sparc64` | 8 bytes | -//! | `s390x`, `powerpc64` with `target_feature = "quadword-atomics"` | 16 bytes | +//! | `x86_64`, `aarch64`, `loongarch64`, `mips64`, `mips64r6`, `powerpc64`, `riscv64`, `sparc64`, `s390x` | 8 bytes | //! //! Atomics loads that are larger than this limit as well as atomic loads with ordering other //! than `Relaxed`, as well as *all* atomic loads on targets not listed in the table, might still be |
