Reviewers: Sven Panne,

Message:
Committed patchset #1 manually as r17358 (presubmit successful).

Description:
Fix r17253.

There's no reason why the setObjectGroupIde / setReferenceFromGroups funcs
should've been called twice.

BUG=
[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=17358

Please review this at https://codereview.chromium.org/39573002/

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

Affected files (+0, -2 lines):
  M src/api.cc


Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index a76882469f26ba965fa6fec2010c7775f9a2a7e8..0bb374f2dc69bea8e712d4962363e835bfbb80bc 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -6382,7 +6382,6 @@ void Isolate::SetObjectGroupId(internal::Object** object, UniqueId id) {
   internal_isolate->global_handles()->SetObjectGroupId(
       v8::internal::Handle<v8::internal::Object>(object).location(),
       id);
-  internal_isolate->global_handles()->SetObjectGroupId(object, id);
 }


@@ -6391,7 +6390,6 @@ void Isolate::SetReferenceFromGroup(UniqueId id, internal::Object** object) {
   internal_isolate->global_handles()->SetReferenceFromGroup(
       id,
       v8::internal::Handle<v8::internal::Object>(object).location());
-  internal_isolate->global_handles()->SetReferenceFromGroup(id, object);
 }




--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to