Commit fbbace7f authored by danno@chromium.org's avatar danno@chromium.org

Fix build

BUG=none
TEST=none
TBR=ager@chromium.org

Review URL: http://codereview.chromium.org/6732038

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7355 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent ea45f671
......@@ -11521,24 +11521,6 @@ static void ExternalArrayTestHelper(v8::ExternalArrayType array_type,
"sum;");
CHECK_EQ(7800000, result->Int32Value());
// Test edge cases for crankshaft code.
array->set(0, static_cast<ElementType>(0xFFFFFFFF));
result = CompileRun("function ee_limit_test_func(i) {"
" return ext_array[i];"
" return sum;"
"}"
"sum=0;"
"for (var i=0;i<1000000;++i) {"
" sum=ee_limit_test_func(0);"
"}"
"sum;");
if (array_type == v8::kExternalFloatArray) {
CHECK_EQ(0, result->Int32Value());
} else {
CHECK_EQ(static_cast<int>(static_cast<ElementType>(0xFFFFFFFF)),
result->Int32Value());
}
result = CompileRun("ext_array[3] = 33;"
"delete ext_array[3];"
"ext_array[3];");
......
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