Fix presubmit error in r11243.

R=ulan@chromium.org
TEST=cctest/test-heap/OptimizedAllocationAlwaysInNewSpace

Review URL: https://chromiumcodereview.appspot.com/10010010

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11244 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
mstarzinger@chromium.org 2012-04-05 16:40:13 +00:00
parent 78226352b7
commit 2df9c8828f

View File

@ -1702,8 +1702,7 @@ TEST(OptimizedAllocationAlwaysInNewSpace) {
"f(1); f(2); f(3);" "f(1); f(2); f(3);"
"%OptimizeFunctionOnNextCall(f);" "%OptimizeFunctionOnNextCall(f);"
"f(4);"); "f(4);");
CHECK(res->IsObject()); CHECK_EQ(4, res->ToObject()->GetRealNamedProperty(v8_str("x"))->Int32Value());
CHECK(res->ToObject()->GetRealNamedProperty(v8_str("x"))->Int32Value() == 4);
Handle<JSObject> o = Handle<JSObject> o =
v8::Utils::OpenHandle(*v8::Handle<v8::Object>::Cast(res)); v8::Utils::OpenHandle(*v8::Handle<v8::Object>::Cast(res));