mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-26 06:05:42 -04:00
dep/xbyak: Unreachable code warning fix
This commit is contained in:
parent
1398d789ec
commit
a66fec4266
@ -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; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user