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

Unified Diff: src/builtins-ia32.cc

Issue 9111: Use 1 byte push REG instructions instead of the 2 byte ModRM version. (Closed)
Patch Set: Created 12 years, 1 month 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 | src/ic-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins-ia32.cc
diff --git a/src/builtins-ia32.cc b/src/builtins-ia32.cc
index 0de381c5ef8ed60d5858943cff148a3f395d3e73..92a24dddd5da201ba6b8a5a45772d9b3478f6889 100644
--- a/src/builtins-ia32.cc
+++ b/src/builtins-ia32.cc
@@ -657,7 +657,7 @@ static void EnterArgumentsAdaptorFrame(MacroAssembler* masm) {
// arguments and the receiver.
ASSERT(kSmiTagSize == 1);
__ lea(ecx, Operand(eax, eax, times_1, kSmiTag));
- __ push(Operand(ecx));
+ __ push(ecx);
}
« no previous file with comments | « no previous file | src/ic-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698