File tree 1 file changed +8
-7
lines changed
1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 92
92
//! "sufficiently small" depends on the architecture:
93
93
//!
94
94
//! | Target architecture | Maximal atomic `load` size that is guaranteed read-only |
95
- //! |-----------|---------|
96
- //! | `x86` | 4 bytes |
97
- //! | `x86_64` | 8 bytes |
98
- //! | `arm` | 4 bytes |
99
- //! | `aarch64` | 8 bytes |
100
- //! | `riscv32` | 4 bytes |
101
- //! | `riscv64` | 8 bytes |
95
+ //! |---------------|---------|
96
+ //! | `x86` | 4 bytes |
97
+ //! | `x86_64` | 8 bytes |
98
+ //! | `arm` | 4 bytes |
99
+ //! | `aarch64` | 8 bytes |
100
+ //! | `riscv32` | 4 bytes |
101
+ //! | `riscv64` | 8 bytes |
102
+ //! | `powerpc64le` | 8 bytes |
102
103
//!
103
104
//! Any atomic `load` on read-only memory larger than the given size are Undefined Behavior. For
104
105
//! architectures not listed above, all atomic `load` on read-only memory are Undefined Behavior.
You can’t perform that action at this time.
0 commit comments