Commit 8e296a79 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Fix compilation error in r3352

Compilation error caught on Windows. Strangely enough gcc did not complaint here.

TBR=ager@chromium.org
Review URL: http://codereview.chromium.org/436022

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3353 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 4bc5aee6
......@@ -67,7 +67,7 @@ static Object* AllocateAfterFailures() {
OldSpace* old_data_space = Heap::old_data_space();
static const int kOldDataSpaceFillerSize = ByteArray::SizeFor(0);
while (old_data_space->Available() > kOldDataSpaceFillerSize) {
CHECK(!Heap::Heap::AllocateByteArray(0, TENURED)->IsFailure());
CHECK(!Heap::AllocateByteArray(0, TENURED)->IsFailure());
}
CHECK(!Heap::AllocateRawAsciiString(100, TENURED)->IsFailure());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment