mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-25 02:50:18 +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>
|
||||
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>
|
||||
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