Revision: 21089
Author: [email protected]
Date: Wed Apr 30 12:38:39 2014 UTC
Log: Do not use default for switch over AllocationSpace.
[email protected]
Review URL: https://codereview.chromium.org/262583004
http://code.google.com/p/v8/source/detail?r=21089
Modified:
/branches/bleeding_edge/src/heap-inl.h
/branches/bleeding_edge/src/heap.cc
=======================================
--- /branches/bleeding_edge/src/heap-inl.h Wed Apr 30 12:25:18 2014 UTC
+++ /branches/bleeding_edge/src/heap-inl.h Wed Apr 30 12:38:39 2014 UTC
@@ -401,7 +401,7 @@
case PROPERTY_CELL_SPACE:
case LO_SPACE:
return false;
- default:
+ case INVALID_SPACE:
break;
}
UNREACHABLE();
=======================================
--- /branches/bleeding_edge/src/heap.cc Wed Apr 30 12:25:18 2014 UTC
+++ /branches/bleeding_edge/src/heap.cc Wed Apr 30 12:38:39 2014 UTC
@@ -4619,7 +4619,7 @@
return property_cell_space_->Contains(addr);
case LO_SPACE:
return lo_space_->SlowContains(addr);
- default:
+ case INVALID_SPACE:
break;
}
UNREACHABLE();
--
--
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.