Revision: 21121
Author: [email protected]
Date: Fri May 2 13:03:39 2014 UTC
Log: Fix for a GCMole issue introduced in r21117.
[email protected]
Review URL: https://codereview.chromium.org/269743002
http://code.google.com/p/v8/source/detail?r=21121
Modified:
/branches/bleeding_edge/src/bootstrapper.cc
=======================================
--- /branches/bleeding_edge/src/bootstrapper.cc Fri May 2 10:27:12 2014 UTC
+++ /branches/bleeding_edge/src/bootstrapper.cc Fri May 2 13:03:39 2014 UTC
@@ -2108,8 +2108,8 @@
void Genesis::InitializeNormalizedMapCaches() {
- native_context()->set_normalized_map_cache(
- *NormalizedMapCache::New(isolate()));
+ Handle<NormalizedMapCache> cache = NormalizedMapCache::New(isolate());
+ native_context()->set_normalized_map_cache(*cache);
}
--
--
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/d/optout.