Reviewers: Toon Verwaest,

Message:
PTAL

Description:
Double unboxing tests fixed.

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

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

Affected files (+2, -1 lines):
  M test/cctest/test-unboxed-doubles.cc


Index: test/cctest/test-unboxed-doubles.cc
diff --git a/test/cctest/test-unboxed-doubles.cc b/test/cctest/test-unboxed-doubles.cc index 2abf3c2926c434a5ff9c2a41ebc55c9dd026bf37..33597717e1446bdfad94c9eb4f65173fd0775d83 100644
--- a/test/cctest/test-unboxed-doubles.cc
+++ b/test/cctest/test-unboxed-doubles.cc
@@ -509,7 +509,8 @@ static Handle<LayoutDescriptor> TestLayoutDescriptorAppendIfFastOrUseFull(
     DCHECK(map->layout_descriptor()->IsConsistentWithMap(*map));
   }

-  Handle<LayoutDescriptor> layout_descriptor = map->GetLayoutDescriptor();
+  Handle<LayoutDescriptor> layout_descriptor(map->GetLayoutDescriptor(),
+                                             isolate);
   DCHECK(layout_descriptor->IsConsistentWithMap(*map));
   return layout_descriptor;
 }


--
--
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to