diff options
author | isaacs <i@izs.me> | 2013-02-08 17:17:45 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-02-08 17:17:45 -0800 |
commit | 0c2e5ec840e2dc64585ea75f7539d87e5af4269e (patch) | |
tree | 43a452335e0d43a40d02498a687b0a2a61acdee4 /deps/v8/src/compiler.cc | |
parent | 8164b2fda77d9f91c6cd83d360967bf55c0bd0f1 (diff) | |
download | node-new-0c2e5ec840e2dc64585ea75f7539d87e5af4269e.tar.gz |
V8: Upgrade to 3.15.11.15
Diffstat (limited to 'deps/v8/src/compiler.cc')
-rw-r--r-- | deps/v8/src/compiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/compiler.cc b/deps/v8/src/compiler.cc index 5779aae81b..7e4eaa2b3b 100644 --- a/deps/v8/src/compiler.cc +++ b/deps/v8/src/compiler.cc @@ -697,7 +697,7 @@ static bool InstallFullCode(CompilationInfo* info) { Handle<ScopeInfo> scope_info = ScopeInfo::Create(info->scope(), info->zone()); shared->set_scope_info(*scope_info); - shared->set_code(*code); + shared->ReplaceCode(*code); if (!function.is_null()) { function->ReplaceCode(*code); ASSERT(!function->IsOptimized()); |