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

Unified Diff: src/ic-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 | « src/builtins-ia32.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic-ia32.cc
diff --git a/src/ic-ia32.cc b/src/ic-ia32.cc
index 82eb14d9d3a4b89e8864596df572f20c6aab158a..3f56031513e3f2e4200707030bb62b801b705c78 100644
--- a/src/ic-ia32.cc
+++ b/src/ic-ia32.cc
@@ -538,8 +538,8 @@ void CallIC::Generate(MacroAssembler* masm,
__ EnterInternalFrame();
// Push the receiver and the name of the function.
- __ push(Operand(edx));
- __ push(Operand(ebx));
+ __ push(edx);
+ __ push(ebx);
// Call the entry.
CEntryStub stub;
« no previous file with comments | « src/builtins-ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698