Index: src/stub-cache.cc |
diff --git a/src/stub-cache.cc b/src/stub-cache.cc |
index 787e833f4f7ab4327e20109d101632b0e3f697e4..91ffa71945db1cc9b2c200ebb10c6bd295a744eb 100644 |
--- a/src/stub-cache.cc |
+++ b/src/stub-cache.cc |
@@ -679,10 +679,10 @@ Handle<Code> StubCache::ComputeCallGlobal(int argc, |
static void FillCache(Isolate* isolate, Handle<Code> code) { |
Handle<NumberDictionary> dictionary = |
- NumberDictionarySet(isolate->factory()->non_monomorphic_cache(), |
- code->flags(), |
- code, |
- PropertyDetails(NONE, NORMAL)); |
+ NumberDictionary::Set(isolate->factory()->non_monomorphic_cache(), |
+ code->flags(), |
+ code, |
+ PropertyDetails(NONE, NORMAL)); |
isolate->heap()->public_set_non_monomorphic_cache(*dictionary); |
} |