mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:45:45 -04:00
dep/xbyak: Unreachable code warning fix
This commit is contained in:
@ -390,9 +390,12 @@ inline size_t getPageSize()
|
||||
static const long pageSize = sysconf(_SC_PAGESIZE);
|
||||
if (pageSize > 0) {
|
||||
return (size_t)pageSize;
|
||||
} else {
|
||||
return 4096;
|
||||
}
|
||||
#endif
|
||||
#else
|
||||
return 4096;
|
||||
#endif
|
||||
}
|
||||
|
||||
inline bool IsInDisp8(uint32_t x) { return 0xFFFFFF80 <= x || x <= 0x7F; }
|
||||
|
Reference in New Issue
Block a user