Revision: 24644
Author: [email protected]
Date: Wed Oct 15 15:04:09 2014 UTC
Log: Fix compilation some more after r24639
Third time's a charm...
[email protected]
Review URL: https://codereview.chromium.org/655223003
https://code.google.com/p/v8/source/detail?r=24644
Modified:
/branches/bleeding_edge/src/serialize.cc
=======================================
--- /branches/bleeding_edge/src/serialize.cc Wed Oct 15 14:27:26 2014 UTC
+++ /branches/bleeding_edge/src/serialize.cc Wed Oct 15 15:04:09 2014 UTC
@@ -2213,7 +2213,9 @@
for (int i = 0; i < SerializerDeserializer::kNumberOfSpaces; i++) {
Vector<const uint32_t> chunks = cs->FinalAllocationChunks(i);
for (int j = 0; j < chunks.length(); j++) {
- DCHECK(i == LO_SPACE || chunks[j] < Page::kMaxRegularHeapObjectSize);
+ DCHECK(i == LO_SPACE ||
+ chunks[j] <
+ static_cast<uint32_t>(Page::kMaxRegularHeapObjectSize));
uint32_t chunk = ChunkSizeBits::encode(chunks[j]) |
IsLastChunkBits::encode(j == chunks.length() - 1);
reservations.Add(chunk);
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.