Fixed presubmit error.

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@10907 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
svenpanne@chromium.org 2012-03-02 14:15:28 +00:00
parent 5033b9b6d1
commit 21e43e14eb

View File

@ -524,7 +524,8 @@ bool Call::ComputeTarget(Handle<Map> type, Handle<String> name) {
switch (lookup.type()) {
case CONSTANT_FUNCTION:
// We surely know the target for a constant function.
target_ = Handle<JSFunction>(lookup.GetConstantFunctionFromMap(*type));
target_ =
Handle<JSFunction>(lookup.GetConstantFunctionFromMap(*type));
return true;
case NORMAL:
case FIELD: