mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
util: prevent optimizer from removing endian-swapped writes
This commit is contained in:
parent
a975689c59
commit
36bdb83cfc
1 changed files with 2 additions and 2 deletions
|
@ -144,12 +144,12 @@ namespace ams::util {
|
||||||
|
|
||||||
template<std::integral T>
|
template<std::integral T>
|
||||||
constexpr ALWAYS_INLINE void StoreBigEndian(T *ptr, T val) {
|
constexpr ALWAYS_INLINE void StoreBigEndian(T *ptr, T val) {
|
||||||
*ptr = ConvertToBigEndian<T>(val);
|
*static_cast<volatile T *>(ptr) = ConvertToBigEndian<T>(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<std::integral T>
|
template<std::integral T>
|
||||||
constexpr ALWAYS_INLINE void StoreLittleEndian(T *ptr, T val) {
|
constexpr ALWAYS_INLINE void StoreLittleEndian(T *ptr, T val) {
|
||||||
*ptr = ConvertToLittleEndian<T>(val);
|
*static_cast<volatile T *>(ptr) = ConvertToLittleEndian<T>(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue