mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 11:20:54 +01:00
Build fix
This commit is contained in:
parent
1ffbf6cd14
commit
33b95582ac
1 changed files with 2 additions and 2 deletions
|
@ -851,8 +851,8 @@ void AssemblyBuilderA64::placeBM(const char* name, RegisterA64 dst, RegisterA64
|
||||||
int lz = countlz(src2);
|
int lz = countlz(src2);
|
||||||
int rz = countrz(src2);
|
int rz = countrz(src2);
|
||||||
|
|
||||||
LUAU_ASSERT(lz + rz > 0 && lz + rz < 32); // must have at least one 0 and at least one 1
|
LUAU_ASSERT(lz + rz > 0 && lz + rz < 32); // must have at least one 0 and at least one 1
|
||||||
LUAU_ASSERT((src2 >> rz) == (1 << (32 - lz - rz)) - 1); // sequence of 1s must be contiguous
|
LUAU_ASSERT((src2 >> rz) == (1u << (32 - lz - rz)) - 1u); // sequence of 1s must be contiguous
|
||||||
|
|
||||||
int imms = 31 - lz - rz; // count of 1s minus 1
|
int imms = 31 - lz - rz; // count of 1s minus 1
|
||||||
int immr = (32 - rz) & 31; // right rotate amount
|
int immr = (32 - rz) & 31; // right rotate amount
|
||||||
|
|
Loading…
Add table
Reference in a new issue