| 74 | return __c11_atomic_load((_Atomic(float)*)addr, __ATOMIC_SEQ_CST); |
| 75 | } |
| 76 | _EM_INLINE |
| 77 | uint64_t emscripten_atomic_load_u64(const void /*uint64_t*/* _Nonnull addr) { |
| 78 | return __c11_atomic_load((_Atomic(uint64_t)*)addr, __ATOMIC_SEQ_CST); |
| 79 | } |
| 80 | _EM_INLINE |
| 81 | double emscripten_atomic_load_f64(const void /*double*/* _Nonnull addr) { |
| 82 | return __c11_atomic_load((_Atomic(double)*)addr, __ATOMIC_SEQ_CST); |