Revision: 18723
Author: [email protected]
Date: Tue Jan 21 19:40:25 2014 UTC
Log: Fix x64 breakage.
BUG=
Review URL: https://codereview.chromium.org/144263002
http://code.google.com/p/v8/source/detail?r=18723
Modified:
/branches/bleeding_edge/src/mark-compact.cc
=======================================
--- /branches/bleeding_edge/src/mark-compact.cc Tue Jan 21 19:30:27 2014 UTC
+++ /branches/bleeding_edge/src/mark-compact.cc Tue Jan 21 19:40:25 2014 UTC
@@ -3078,7 +3078,7 @@
// crash in concurrent sweeping.
CHECK(p->IsEvacuationCandidate() ||
p->IsFlagSet(Page::RESCAN_ON_EVACUATION));
- CHECK_EQ(p->parallel_sweeping(), 0);
+ CHECK_EQ(static_cast<int>(p->parallel_sweeping()), 0);
if (p->IsEvacuationCandidate()) {
// During compaction we might have to request a new page.
// Check that space still have room for that.
--
--
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/groups/opt_out.