Index: test/cctest/test-heap.cc |
diff --git a/test/cctest/test-heap.cc b/test/cctest/test-heap.cc |
index 5730cde1bb24e309c4422f84696e843d5a4912a4..24a9044bd5184050f8f0db157c034c8683b55bb5 100644 |
--- a/test/cctest/test-heap.cc |
+++ b/test/cctest/test-heap.cc |
@@ -3979,8 +3979,9 @@ TEST(Regress169928) { |
// We need filler the size of AllocationMemento object, plus an extra |
// fill pointer value. |
HeapObject* obj = NULL; |
- AllocationResult allocation = CcTest::heap()->new_space()->AllocateRaw( |
- AllocationMemento::kSize + kPointerSize); |
+ AllocationResult allocation = |
+ CcTest::heap()->new_space()->AllocateRawUnaligned( |
+ AllocationMemento::kSize + kPointerSize); |
CHECK(allocation.To(&obj)); |
Address addr_obj = obj->address(); |
CcTest::heap()->CreateFillerObjectAt( |