Reviewers: Toon Verwaest,

Description:
Fix compilation with clang after r22208

[email protected]
LOG=n
BUG=none

Please review this at https://codereview.chromium.org/370993004/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+0, -14 lines):
  M src/store-buffer.cc


Index: src/store-buffer.cc
diff --git a/src/store-buffer.cc b/src/store-buffer.cc
index a21ac2a76ea2d4d2c29ea42b4bf7d9ca4074263c..3745d91a8a417071b8f40262069ebee34deed332 100644
--- a/src/store-buffer.cc
+++ b/src/store-buffer.cc
@@ -403,20 +403,6 @@ void StoreBuffer::FindPointersToNewSpaceInRegion(
 }


-// Compute start address of the first map following given addr.
-static inline Address MapStartAlign(Address addr) {
-  Address page = Page::FromAddress(addr)->area_start();
- return page + (((addr - page) + (Map::kSize - 1)) / Map::kSize * Map::kSize);
-}
-
-
-// Compute end address of the first map preceding given addr.
-static inline Address MapEndAlign(Address addr) {
-  Address page = Page::FromAllocationTop(addr)->area_start();
-  return page + ((addr - page) / Map::kSize * Map::kSize);
-}
-
-
 void StoreBuffer::IteratePointersInStoreBuffer(
     ObjectSlotCallback slot_callback,
     bool clear_maps) {


--
--
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.

Reply via email to