mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 792581 - part 7 - Remove LL_AND macro with logical AND. r=ehsan
This commit is contained in:
parent
a7c555352b
commit
8198a95536
@ -243,7 +243,7 @@ struct DateHashEntry : public PLDHashEntryHdr {
|
|||||||
int64_t h64, l64;
|
int64_t h64, l64;
|
||||||
LL_USHR(h64, t, 32);
|
LL_USHR(h64, t, 32);
|
||||||
l64 = LL_INIT(0, 0xffffffff);
|
l64 = LL_INIT(0, 0xffffffff);
|
||||||
LL_AND(l64, l64, t);
|
l64 &= t;
|
||||||
int32_t h32, l32;
|
int32_t h32, l32;
|
||||||
LL_L2I(h32, h64);
|
LL_L2I(h32, h64);
|
||||||
LL_L2I(l32, l64);
|
LL_L2I(l32, l64);
|
||||||
|
Loading…
Reference in New Issue
Block a user