MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / byteswap

Function byteswap

include/recompiler/context.h:15–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14#ifdef _MSC_VER
15inline uint32_t byteswap(uint32_t val) {
16 return _byteswap_ulong(val);
17}
18#else
19constexpr uint32_t byteswap(uint32_t val) {
20 return __builtin_bswap32(val);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected