Bug 895168 - Part 3: Stop using LL_SHR in the tree; r=jcranmer

--HG--
extra : rebase_source : aaf332376b7fe71d20b5a4e7ae43a3b92a55793e
This commit is contained in:
Ehsan Akhgari 2013-07-18 16:48:31 -04:00
parent 539f609d18
commit 46c322e969

View File

@ -311,8 +311,7 @@ nsSHistory::CalcMaxTotalViewers()
if (bytes > INT64_MAX)
bytes = INT64_MAX;
uint64_t kbytes;
LL_SHR(kbytes, bytes, 10);
uint64_t kbytes = bytes >> 10;
double kBytesD;
LL_L2D(kBytesD, (int64_t) kbytes);