Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(883)

Unified Diff: runtime/vm/virtual_memory_test.cc

Issue 644453003: Simplify VirtualMemory by removing unused ReserveAligned method. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/virtual_memory_test.cc
===================================================================
--- runtime/vm/virtual_memory_test.cc (revision 41000)
+++ runtime/vm/virtual_memory_test.cc (working copy)
@@ -37,11 +37,6 @@
EXPECT_STREQ("ac/dc", buf);
delete vm;
-
- const intptr_t kAlignment = 1 * MB;
- vm = VirtualMemory::ReserveAligned(kVirtualMemoryBlockSize, kAlignment);
- ASSERT((vm->start() & (kAlignment - 1)) == 0);
- delete vm;
}
} // namespace dart

Powered by Google App Engine
This is Rietveld 408576698