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

Unified Diff: src/crankshaft/ppc/lithium-codegen-ppc.cc

Issue 1577193003: Change the CompilationInfo::IsCodePreAgingActive() predicate to CompilationInfo::GeneratePreagingPr… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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/crankshaft/ppc/lithium-codegen-ppc.cc
diff --git a/src/crankshaft/ppc/lithium-codegen-ppc.cc b/src/crankshaft/ppc/lithium-codegen-ppc.cc
index 92f43672a73403a818c550966bff3b9434c84031..c0e68675164deb1c9703fd079be5e8abd5bea6b1 100644
--- a/src/crankshaft/ppc/lithium-codegen-ppc.cc
+++ b/src/crankshaft/ppc/lithium-codegen-ppc.cc
@@ -132,7 +132,7 @@ bool LCodeGen::GeneratePrologue() {
if (info()->IsStub()) {
__ StubPrologue(prologue_offset);
} else {
- __ Prologue(info()->IsCodePreAgingActive(), prologue_offset);
+ __ Prologue(info()->GeneratePreagedPrologue(), prologue_offset);
}
frame_is_built_ = true;
}

Powered by Google App Engine
This is Rietveld 408576698