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

Unified Diff: src/full-codegen/ppc/full-codegen-ppc.cc

Issue 2590343002: PPC: Use a different map to distinguish eval contexts (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/full-codegen/ppc/full-codegen-ppc.cc
diff --git a/src/full-codegen/ppc/full-codegen-ppc.cc b/src/full-codegen/ppc/full-codegen-ppc.cc
index adba4b692dfc3bbfb4b1812a7a76a3f290fe2c19..5bc7e24017445e1ffb9cc995e4256997e5597fa6 100644
--- a/src/full-codegen/ppc/full-codegen-ppc.cc
+++ b/src/full-codegen/ppc/full-codegen-ppc.cc
@@ -208,7 +208,8 @@ void FullCodeGenerator::Generate() {
}
if (slots <= FastNewFunctionContextStub::MaximumSlots()) {
FastNewFunctionContextStub stub(isolate(), info->scope()->scope_type());
- __ mov(FastNewFContextDescriptor::SlotsRegister(), Operand(slots));
+ __ mov(FastNewFunctionContextDescriptor::SlotsRegister(),
+ Operand(slots));
__ CallStub(&stub);
// Result of FastNewFunctionContextStub is always in new space.
need_write_barrier = false;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698