Reviewers: titzer,
Message:
TBR
Description:
Fix x64 breakage.
BUG=
Please review this at https://codereview.chromium.org/144263002/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -1 lines):
M src/mark-compact.cc
Index: src/mark-compact.cc
diff --git a/src/mark-compact.cc b/src/mark-compact.cc
index
8bd8b95a1f7e1576c4820d2d5adfad08df2e863e..e625ddfca10f8c767bfd89b986ae5619394411fb
100644
--- a/src/mark-compact.cc
+++ b/src/mark-compact.cc
@@ -3078,7 +3078,7 @@ void MarkCompactCollector::EvacuatePages() {
// 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.