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

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

Issue 552256: Add missing write barrirer code. (Closed)
Patch Set: Created 10 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
« 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/ia32/full-codegen-ia32.cc
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc
index 5fd594cbe9eb8dd8d7e1f868df07a3d943bbb12f..514a8b34294bd79bec5d9ab54a22429b31002d7f 100644
--- a/src/ia32/full-codegen-ia32.cc
+++ b/src/ia32/full-codegen-ia32.cc
@@ -95,7 +95,7 @@ void FullCodeGenerator::Generate(FunctionLiteral* fun) {
// Load parameter from stack.
__ mov(eax, Operand(ebp, parameter_offset));
// Store it in the context
- __ mov(Operand(esi, Context::SlotOffset(slot->index())), eax);
+ Move(slot, eax, ecx, edx);
}
}
}
« 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