Revision: 24642
Author: [email protected]
Date: Wed Oct 15 14:27:26 2014 UTC
Log: Fix compilation after r24639
[email protected]
Review URL: https://codereview.chromium.org/661473002
https://code.google.com/p/v8/source/detail?r=24642
Modified:
/branches/bleeding_edge/src/serialize.cc
=======================================
--- /branches/bleeding_edge/src/serialize.cc Wed Oct 15 14:04:53 2014 UTC
+++ /branches/bleeding_edge/src/serialize.cc Wed Oct 15 14:27:26 2014 UTC
@@ -1918,7 +1918,7 @@
DCHECK(size > 0 && size < Page::kMaxRegularHeapObjectSize);
uint32_t new_chunk_size = pending_chunk_[space] + size;
uint32_t allocation;
- if (new_chunk_size > Page::kMaxRegularHeapObjectSize) {
+ if (new_chunk_size >
static_cast<uint32_t>(Page::kMaxRegularHeapObjectSize)) {
// The new chunk size would not fit onto a single page. Complete the
// current chunk and start a new one.
completed_chunks_[space].Add(pending_chunk_[space]);
--
--
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.