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

Unified Diff: src/objects.cc

Issue 23480031: Enable preaging of code objects when --optimize-for-size. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Limit to pre-age patch. Created 7 years, 3 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/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index d586c4abf7e292da963c6f2aba3f031ce1b9b700..ea6872b31b5ff0427101fe14edcd2994f6c72fa4 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -10463,7 +10463,7 @@ bool Code::IsOld() {
Age age;
MarkingParity parity;
GetCodeAgeAndParity(sequence, &age, &parity);
- return age >= kSexagenarianCodeAge;
+ return age >= kIsOldCodeAge;
}
« src/ia32/full-codegen-ia32.cc ('K') | « src/objects.h ('k') | src/x64/codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698