dep/xbyak: Unreachable code warning fix

This commit is contained in:
Stenzek 2023-09-05 21:22:43 +10:00
parent 1398d789ec
commit a66fec4266
1 changed files with 4 additions and 1 deletions

View File

@ -390,10 +390,13 @@ inline size_t getPageSize()
static const long pageSize = sysconf(_SC_PAGESIZE);
if (pageSize > 0) {
return (size_t)pageSize;
}
#endif
} else {
return 4096;
}
#else
return 4096;
#endif
}
inline bool IsInDisp8(uint32_t x) { return 0xFFFFFF80 <= x || x <= 0x7F; }
inline bool IsInInt32(uint64_t x) { return ~uint64_t(0x7fffffffu) <= x || x <= 0x7FFFFFFFU; }