Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Unified Diff: src/factory.cc

Issue 184923002: Clear optimized code cache in shared function info when code gets deoptimized (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/factory.cc
diff --git a/src/factory.cc b/src/factory.cc
index 54ebf85da6eb5899ab02507a72ccc0f77423e623..6bce5d3a6a368d1a47b238944dd1b68a2731ad25 100644
--- a/src/factory.cc
+++ b/src/factory.cc
@@ -967,8 +967,7 @@ Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
FixedArray* literals =
function_info->GetLiteralsFromOptimizedCodeMap(index);
if (literals != NULL) result->set_literals(literals);
- Code* code = function_info->GetCodeFromOptimizedCodeMap(index);
- result->ReplaceCode(code);
+ result->ReplaceCode(function_info->GetCodeFromOptimizedCodeMap(index));
ulan 2014/03/01 13:59:43 Revert change from r19603
return result;
}

Powered by Google App Engine
This is Rietveld 408576698