Reviewers: ,

Description:
Fix build.

Last minute cleanup lost a '*'.

TBR=ri...@chromium.org
BUG=
TEST=


Please review this at http://codereview.chromium.org/7977020/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/runtime.cc


Index: src/runtime.cc
diff --git a/src/runtime.cc b/src/runtime.cc
index 4dd366727298e475f4c8b257f4853121a3e24e9f..2b79bff320a465201c15a1f8776d592b213b4a42 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -8657,7 +8657,7 @@ static ObjectPair LoadContextSlotHelper(Arguments args,
     // GetProperty below can cause GC.
     Handle<Object> receiver_handle(object->IsGlobalObject()
         ? GlobalObject::cast(*object)->global_receiver()
-        : ComputeReceiverForNonGlobal(isolate, object));
+        : ComputeReceiverForNonGlobal(isolate, *object));

     // No need to unhole the value here.  This is taken care of by the
     // GetProperty function.


--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev

Reply via email to