Bug 792581 - part 7 - Remove LL_AND macro with logical AND. r=ehsan

This commit is contained in:
Andrew Quartey 2012-10-05 01:05:27 -04:00
parent a7c555352b
commit 8198a95536

View File

@ -243,7 +243,7 @@ struct DateHashEntry : public PLDHashEntryHdr {
int64_t h64, l64;
LL_USHR(h64, t, 32);
l64 = LL_INIT(0, 0xffffffff);
LL_AND(l64, l64, t);
l64 &= t;
int32_t h32, l32;
LL_L2I(h32, h64);
LL_L2I(l32, l64);